Skip to content

Commit 2b33500

Browse files
authored
Merge pull request #96916 from tfitzmac/1122tutorial
fix variable
2 parents 4993119 + 81f5b26 commit 2b33500

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-resource-manager/template-tutorial-create-first-template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ az login
9292
---
9393
## Create resource group
9494

95-
When you deploy a template, you specify a resource group that will contain the resources. Before running the deployment command, create the resource group with either Azure CLI or Azure PowerShell. Select the tabs in the following code section to choose between Azure PowerShell and Azure CLI.
95+
When you deploy a template, you specify a resource group that will contain the resources. Before running the deployment command, create the resource group with either Azure CLI or Azure PowerShell. Select the tabs in the following code section to choose between Azure PowerShell and Azure CLI. The CLI examples in this article are written for the Bash shell.
9696

9797
# [PowerShell](#tab/azure-powershell)
9898

@@ -129,7 +129,7 @@ New-AzResourceGroupDeployment `
129129
# [Azure CLI](#tab/azure-cli)
130130

131131
```azurecli
132-
$templateFile="{provide-the-path-to-the-template-file}"
132+
templateFile="{provide-the-path-to-the-template-file}"
133133
az group deployment create \
134134
--name blanktemplate \
135135
--resource-group myResourceGroup \

0 commit comments

Comments
 (0)