Skip to content

Commit aa57015

Browse files
committed
fix tabs
1 parent 12bdf31 commit aa57015

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

docs/azure/sdk/authentication/user-assigned-managed-identity.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,33 +28,34 @@ User-assigned identities are created as standalone resources in your Azure subsc
2828

2929
:::image type="content" source="../media/user-assigned-identity-create.png" alt-text="A screenshot showing the page to manage user-assigned identities.":::
3030

31-
1. On the **Create User Assigned Managed Identity** page, select a subscription, resource group, and region for the user-assigned identity. Enter a logical name for the identity.
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.
3232
1. Select **Review + create** to review and validate your inputs.
33+
1. Select **Create** to create the user-assigned identity.
3334

3435
:::image type="content" source="../media/user-assigned-identity-form.png" alt-text="A screenshot showing the form to create a user-assigned identity.":::
3536

36-
1. Select **Create** to create the user-assigned identity.
37-
3837
### [Azure CLI](#tab/azure-cli)
3938

4039
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).
4140

42-
The Azure CLI commands used to enable managed identity for an Azure resource are of the form `az <command-group> identity --resource-group <resource-group-name> --name <resource-name>`. Specific commands for popular Azure services are shown below.
41+
Use the Azure CLI command `az identity create` to create a managed identity for an Azure resource:
4342

4443
```azurecli
4544
az identity create --resource-group <resource-group-name> --name <identity-name>
4645
```
4746

48-
The command output should display the following values:
47+
The command output prints the following values:
4948
- **ClientID**: Used to configure application code that uses the identity.
5049
- **Location**: The Azure region that contains the identity.
5150
- **Name**: The name of the identity.
5251
- **PrincipalId**: Used for access control and role assignments in Azure.
5352
- **ResourceGroup**: The resource group that contains the identity.
54-
- **TenantId**: The Microsoft Entra tenant that contains the identity. in.
53+
- **TenantId**: The Microsoft Entra tenant that contains the identity.
5554

5655
For the steps ahead, you'll use the `principalId` to assign roles to the managed identity.
5756

57+
---
58+
5859
[!INCLUDE [assign-roles-identity](../includes/assign-roles-identity.md)]
5960

6061
## Implement DefaultAzureCredential in your application

0 commit comments

Comments
 (0)