Skip to content

Commit 1c5ec51

Browse files
Apply suggestions from code review
Co-authored-by: Scott Addie <[email protected]>
1 parent 15bc84b commit 1c5ec51

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Authenticate Azure-hosted .NET apps to Azure resources using a system-assigned managed identity
3-
description: Learn how to authenticate Azure-hosted .NET apps to other Azure services using a system-assigned identity
3+
description: Learn how to authenticate Azure-hosted .NET apps to other Azure services using a system-assigned managed identity.
44
ms.topic: how-to
55
ms.custom: devx-track-dotnet, engagement-fy23, devx-track-azurecli
66
ms.date: 02/06/2025

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

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Authenticate Azure-hosted .NET apps to Azure resources using a user-assigned managed identity
3-
description: Learn how to authenticate Azure-hosted .NET apps to other Azure services using a user-assigned identity
3+
description: Learn how to authenticate Azure-hosted .NET apps to other Azure services using a user-assigned managed identity.
44
ms.topic: how-to
55
ms.custom: devx-track-dotnet, engagement-fy23, devx-track-azurecli
66
ms.date: 02/06/2025
@@ -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 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).
2323

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

@@ -28,12 +28,12 @@ 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, 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.
3232
1. Select **Review + create** to review and validate your inputs.
3333

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.":::
3535

36-
1. Select **Create** to create the user-assigned identity.
36+
1. Select **Create** to create the user-assigned managed identity.
3737
1. After the identity is created, select **Go to resource**.
3838
1. On the new identity's **Overview** page, copy the `Client ID` value to use for later when you configure the application code.
3939

@@ -42,7 +42,9 @@ User-assigned identities are created as standalone resources in your Azure subsc
4242
Use the Azure CLI command [`az identity create`](/cli/azure/identity?view=azure-cli-latest#az-identity-create) to create a managed identity:
4343

4444
```azurecli
45-
az identity create --resource-group <resource-group-name> --name <identity-name>
45+
az identity create \
46+
--resource-group <resource-group-name> \
47+
--name <identity-name>
4648
```
4749

4850
The command output prints the following values:

0 commit comments

Comments
 (0)