Skip to content

Commit 15bc84b

Browse files
committed
fix
1 parent ea28e6b commit 15bc84b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The recommended approach to authenticate an Azure-hosted app to other Azure reso
1919

2020
## Create a user-assigned managed identity
2121

22-
User-assigned identities are created as standalone resources in your Azure subscription. You can create them 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 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).
2323

2424
### [Azure portal](#tab/azure-portal)
2525

@@ -54,6 +54,15 @@ The command output prints the following values:
5454
- **ResourceGroup**: The resource group that contains the identity.
5555
- **TenantId**: The Microsoft Entra tenant that contains the identity.
5656

57+
You can always view the managed identity properties again using the [`az identity show`](/cli/azure/identity?view=azure-cli-latest#az-identity-show) command:
58+
59+
```azurecli
60+
az identity show \
61+
--resource-group <your-resource-group> \
62+
--name <your-managed-identity-name> \
63+
-o json
64+
```
65+
5766
---
5867

5968
## Assign the managed identity to your app

0 commit comments

Comments
 (0)