We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2801e28 commit 624ac00Copy full SHA for 624ac00
articles/azure-resource-manager/templates/template-tutorial-create-first-template.md
@@ -123,8 +123,7 @@ $templateFile = "{provide-the-path-to-the-template-file}"
123
New-AzResourceGroupDeployment `
124
-Name blanktemplate `
125
-ResourceGroupName myResourceGroup `
126
- -TemplateFile $templateFile `
127
- -Debug
+ -TemplateFile $templateFile
128
```
129
130
# [Azure CLI](#tab/azure-cli)
@@ -136,8 +135,7 @@ templateFile="{provide-the-path-to-the-template-file}"
136
135
az deployment group create \
137
--name blanktemplate \
138
--resource-group myResourceGroup \
139
- --template-file $templateFile \
140
- --debug
+ --template-file $templateFile
141
142
143
---
0 commit comments