You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -19,7 +19,7 @@ The recommended approach to authenticate an Azure-hosted app to other Azure reso
19
19
20
20
## Create a user-assigned managed identity
21
21
22
-
User-assigned identities are created as standalone resources in your Azure subscription using the Azure portal or the Azure CLI. Azure CLI commands can be run in the [Azure Cloud Shell](https://shell.azure.com) or on a workstation with the [Azure CLI installed](/cli/azure/install-azure-cli).
22
+
User-assigned managed identities are created as standalone resources in your Azure subscription using the Azure portal or the Azure CLI. Azure CLI commands can be run in the [Azure Cloud Shell](https://shell.azure.com) or on a workstation with the [Azure CLI installed](/cli/azure/install-azure-cli).
23
23
24
24
### [Azure portal](#tab/azure-portal)
25
25
@@ -28,12 +28,12 @@ User-assigned identities are created as standalone resources in your Azure subsc
28
28
29
29
:::image type="content" source="../media/user-assigned-identity-create.png" alt-text="A screenshot showing the page to manage user-assigned identities.":::
30
30
31
-
1. On the **Create User Assigned Managed Identity** page, select a subscription, resource group, and region for the user-assigned identity, and then provide a name.
31
+
1. On the **Create User Assigned Managed Identity** page, select a subscription, resource group, and region for the user-assigned managed identity, and then provide a name.
32
32
1. Select **Review + create** to review and validate your inputs.
33
33
34
-
:::image type="content" source="../media/user-assigned-identity-form.png" alt-text="A screenshot showing the form to create a user-assigned identity.":::
34
+
:::image type="content" source="../media/user-assigned-identity-form.png" alt-text="A screenshot showing the form to create a user-assigned managed identity.":::
35
35
36
-
1. Select **Create** to create the user-assigned identity.
36
+
1. Select **Create** to create the user-assigned managed identity.
37
37
1. After the identity is created, select **Go to resource**.
38
38
1. On the new identity's **Overview** page, copy the `Client ID` value to use for later when you configure the application code.
39
39
@@ -42,7 +42,9 @@ User-assigned identities are created as standalone resources in your Azure subsc
42
42
Use the Azure CLI command [`az identity create`](/cli/azure/identity?view=azure-cli-latest#az-identity-create) to create a managed identity:
43
43
44
44
```azurecli
45
-
az identity create --resource-group <resource-group-name> --name <identity-name>
0 commit comments