Skip to content

Commit f480708

Browse files
Merge pull request #212839 from mumian/0928-ds-quickstart
fix a script
2 parents d54d80f + 298fbda commit f480708

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-resource-manager/templates/template-tutorial-deployment-script.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: mumian
88
ms.service: azure-resource-manager
99
ms.workload: multiple
1010
ms.tgt_pltfrm: na
11-
ms.date: 07/19/2022
11+
ms.date: 09/28/2022
1212
ms.topic: tutorial
1313
ms.author: jgao
1414
---
@@ -312,7 +312,7 @@ The deployment script adds a certificate to the key vault. Configure the key vau
312312
read upn &&
313313
echo "Enter the user-assigned managed identity ID:" &&
314314
read identityId &&
315-
adUserId=$((az ad user show --id [email protected]) | jq -r '.id') &&
315+
adUserId=$((az ad user show --id ${upn}) | jq -r '.id') &&
316316
resourceGroupName="${projectName}rg" &&
317317
keyVaultName="${projectName}kv" &&
318318
az group create --name $resourceGroupName --location $location &&
@@ -376,7 +376,7 @@ When the Azure resources are no longer needed, clean up the resources you deploy
376376
377377
1. From the Azure portal, select **Resource group** from the left menu.
378378
2. Enter the resource group name in the **Filter by name** field.
379-
3. Select the resource group name. You will see a total of six resources in the resource group.
379+
3. Select the resource group name.
380380
4. Select **Delete resource group** from the top menu.
381381
382382
## Next steps

0 commit comments

Comments
 (0)