Skip to content

Commit 221a2b1

Browse files
authored
Merge pull request #113919 from mumian/0504-markup
update the markdown template
2 parents 351c88c + 4878ff3 commit 221a2b1

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

markdown templates/arm-template/quickstart-resource-manager-template.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ Notice the resourceType and sort elements in the URL.
6060
<!--
6161
One of the following options must be included:
6262
63-
- **CLI**: In an Azure CLI Interactive codefence must contain **az group deployment create**. For example:
63+
- **CLI**: In an Azure CLI Interactive codefence must contain **az deployment group create**. For example:
6464
6565
```azurecli-interactive
6666
read -p "Enter a project name that is used for generating resource names:" projectName &&
6767
read -p "Enter the location (i.e. centralus):" location &&
6868
templateUri="https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-storage-account-create/azuredeploy.json" &&
6969
resourceGroupName="${projectName}rg" &&
7070
az group create --name $resourceGroupName --location "$location" &&
71-
az group deployment create --resource-group $resourceGroupName --template-uri $templateUri
71+
az deployment group create --resource-group $resourceGroupName --template-uri $templateUri
7272
echo "Press [ENTER] to continue ..." &&
7373
read
7474
```
@@ -101,15 +101,19 @@ Notice the resourceType and sort elements in the URL.
101101

102102
## Review deployed resources
103103

104-
<!-- You can also use the title "Validate the deployment"-->
104+
<!-- You can also use the title "Validate the deployment". -->
105+
106+
You can either use the Azure portal to check the deployed resources, or use Azure CLI or Azure PowerShell script to list the deployed resources.
105107

106108
## Clean up resources
107109

108110
When no longer needed, delete the resource group, which deletes the resources in the resource group.
109111

110112
<!--
111113
112-
Choose Azure CLI, Azure PowerShell, or Azure portal to delete the resource group. Use [Zone pivots](https://review.docs.microsoft.com/help/contribute/zone-pivots?branch=master) if you want to use multiple options. Here are the samples for Azure CLI and Azure PowerShell:
114+
Choose Azure CLI, Azure PowerShell, or Azure portal to delete the resource group.
115+
116+
Here are the samples for Azure CLI and Azure PowerShell:
113117
114118
```azurecli-interactive
115119
echo "Enter the Resource Group name:" &&

0 commit comments

Comments
 (0)