Skip to content

Commit 7a85a95

Browse files
committed
update
1 parent 938c6b0 commit 7a85a95

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ read templateFile
142142
echo "Enter the linked template URI:"
143143
read linkedTemplateUri
144144
145-
az group deployment create \
145+
az deployment group create \
146146
--name DeployLinkedTemplate \
147147
--resource-group myResourceGroup \
148148
--template-uri $templateFile \

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.author: jgao
1010

1111
Learn how to deploy an Azure Resource Manager template from your local machine. It takes about **8 minutes** to complete.
1212

13-
This tutorial is the first of a series. As you progress through the series, you modularize the template by creating a linked template, you store the linked template in a storage account, and secure the linked template by using SAS token, and you learn how to create a DevOp pipeline to deploy a template. This series focuses on template deployment. If you want to learn template development, see the [beginner tutorials](./template-tutorial-create-first-template.md).
13+
This tutorial is the first of a series. As you progress through the series, you modularize the template by creating a linked template, you store the linked template in a storage account, and secure the linked template by using SAS token, and you learn how to create a DevOp pipeline to deploy templates. This series focuses on template deployment. If you want to learn template development, see the [beginner tutorials](./template-tutorial-create-first-template.md).
1414

1515
## Get tools
1616

@@ -94,7 +94,7 @@ Use one or both deployment options to deploy the template.
9494
# [PowerShell](#tab/azure-powershell)
9595

9696
```azurepowershell
97-
$projectName = Read-Host -Prompt "Enter a project name that is used to generate resource and resource group names"
97+
$projectName = Read-Host -Prompt "Enter the same project name"
9898
$templateFile = Read-Host -Prompt "Enter the template file path and file name"
9999
$resourceGroupName = "${projectName}rg"
100100
@@ -111,13 +111,13 @@ To learn more about deploying template by using Azure PowerShell, see [Deploy re
111111
# [Azure CLI](#tab/azure-cli)
112112

113113
```azurecli
114-
echo "Enter a project name that is used to generate resource and resource group names:"
114+
echo "Enter the same project name:"
115115
read projectName
116116
echo "Enter the template file path and file name:"
117117
read templateFile
118118
resourceGroupName="${projectName}rg"
119119
120-
az group deployment create \
120+
az deployment group create \
121121
--name DeployLocalTemplate \
122122
--resource-group $resourceGroupName \
123123
--template-file $templateFile \

0 commit comments

Comments
 (0)