You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/deployment-tutorial-local-template.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.author: jgao
10
10
11
11
Learn how to deploy an Azure Resource Manager template from your local machine. It takes about **8 minutes** to complete.
12
12
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).
14
14
15
15
## Get tools
16
16
@@ -94,7 +94,7 @@ Use one or both deployment options to deploy the template.
94
94
# [PowerShell](#tab/azure-powershell)
95
95
96
96
```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"
98
98
$templateFile = Read-Host -Prompt "Enter the template file path and file name"
99
99
$resourceGroupName = "${projectName}rg"
100
100
@@ -111,13 +111,13 @@ To learn more about deploying template by using Azure PowerShell, see [Deploy re
111
111
# [Azure CLI](#tab/azure-cli)
112
112
113
113
```azurecli
114
-
echo "Enter a project name that is used to generate resource and resource group names:"
114
+
echo "Enter the same project name:"
115
115
read projectName
116
116
echo "Enter the template file path and file name:"
0 commit comments