Skip to content

Commit 81f5b26

Browse files
committed
fix variable
1 parent ef89af2 commit 81f5b26

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)