Skip to content

Commit f724838

Browse files
committed
fixes
1 parent f8e8994 commit f724838

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/azure/sdk/authentication/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The specific type of token-based authentication an app should use to authenticat
3737
When an app is:
3838

3939
- **Hosted on Azure**: The app should authenticate to Azure resources using a managed identity. This option is discussed in more detail at [authentication in server environments](#authentication-for-azure-hosted-apps).
40-
- **Running locally during development**: The app can authenticate to Azure using either an application service principal for local development or by using the developer's Azure credentials. Each option is discussed in more detail at [authentication during local development](#authentication-during-local-development).
40+
- **Running locally during development**: The app can authenticate to Azure using a [developer account](local-development-dev-account.md), a [broker](local-development-broker.md), or a [service principal](local-development-service-principal.md). Each option is discussed in more detail at [authentication during local development](#authentication-during-local-development).
4141
- **Hosted on-premises**: The app should authenticate to Azure resources using an application service principal, or a managed identity in the case of Azure Arc. On-premises workflows are discussed in more detail at [authentication in server environments](#authentication-for-apps-hosted-on-premises).
4242

4343
## Authentication for Azure-hosted apps

docs/azure/sdk/authentication/local-development-dev-accounts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Developers using Visual Studio Code can authenticate with their developer accoun
6666
6767
### [Azure CLI](#tab/sign-in-azure-cli)
6868
69-
Developers can also use the [Azure CLI](/cli/azure/what-is-azure-cli) to authenticate. Apps using <xref:Azure.Identity.DefaultAzureCredential>` or <xref:Azure.Identity.AzureCliCredential> can then use this account to authenticate app requests when running locally.
69+
Developers can use [Azure CLI](/cli/azure/what-is-azure-cli) to authenticate. Apps using <xref:Azure.Identity.DefaultAzureCredential>` or <xref:Azure.Identity.AzureCliCredential> can then use this account to authenticate app requests when running locally.
7070
7171
To authenticate with the Azure CLI, run the `az login` command. On a system with a default web browser, the Azure CLI launches the browser to authenticate the user.
7272
@@ -82,7 +82,7 @@ az login --use-device-code
8282

8383
### [Azure Developer CLI](#tab/sign-in-azure-developer-cli)
8484

85-
Developers can also use the [Azure Developer CLI](/azure/developer/azure-developer-cli/overview) to authenticate. Apps using <xref:Azure.Identity.DefaultAzureCredential> or <xref:Azure.Identity.AzureDeveloperCliCredential> can then use this account to authenticate app requests when running locally.
85+
Developers can use [Azure Developer CLI](/azure/developer/azure-developer-cli/overview) to authenticate. Apps using <xref:Azure.Identity.DefaultAzureCredential> or <xref:Azure.Identity.AzureDeveloperCliCredential> can then use this account to authenticate app requests when running locally.
8686

8787
To authenticate with the Azure Developer CLI, run the `azd auth login` command. On a system with a default web browser, the Azure Developer CLI launches the browser to authenticate the user.
8888

@@ -98,7 +98,7 @@ azd auth login --use-device-code
9898

9999
### [Azure PowerShell](#tab/sign-in-azure-powershell)
100100

101-
Developers can also use [Azure PowerShell](/powershell/azure/what-is-azure-powershell) to authenticate. Apps using <xref:Azure.Identity.DefaultAzureCredential> or <xref:Azure.Identity.AzurePowerShellCredential> can then use this account to authenticate app requests when running locally.
101+
Developers can use [Azure PowerShell](/powershell/azure/what-is-azure-powershell) to authenticate. Apps using <xref:Azure.Identity.DefaultAzureCredential> or <xref:Azure.Identity.AzurePowerShellCredential> can then use this account to authenticate app requests when running locally.
102102

103103
To authenticate with Azure PowerShell, run the command `Connect-AzAccount`. On a system with a default web browser and version 5.0.0 or later of Azure PowerShell, it launches the browser to authenticate the user.
104104

0 commit comments

Comments
 (0)