Skip to content

Commit 6d392d1

Browse files
committed
update
1 parent fb63039 commit 6d392d1

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

articles/azure-resource-manager/templates/template-tutorial-use-template-reference.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,16 +97,22 @@ From Visual Studio Code, add the additional storage account types as shown in th
9797

9898
## Deploy the template
9999

100-
Refer to the [Deploy the template](quickstart-create-templates-use-visual-studio-code.md#deploy-the-template) section in the Visual Studio Code quickstart for the deployment procedure. When you deploy the template, specify the **storageAccountType** parameter with a newly added value, for example, **Premium_ZRS**. The deploy would fail if you use the original quickstart template because **Premium_ZRS** was not an allowed value. To pass the parameter value, add the following switches to the deployment command:
100+
Refer to the [Deploy the template](quickstart-create-templates-use-visual-studio-code.md#deploy-the-template) section in the Visual Studio Code quickstart for the deployment procedure. When you deploy the template, specify the **storageAccountType** parameter with a newly added value, for example, **Premium_ZRS**. The deploy would fail if you use the original quickstart template because **Premium_ZRS** was not an allowed value. To pass the parameter value, add the following switch to the deployment command:
101+
102+
# [CLI](#tab/CLI)
101103

102104
```azurecli
103-
--parameters storageAccountType 'Premium_ZRS'
105+
--parameters storageAccountType='Premium_ZRS'
104106
```
105107

108+
# [PowerShell](#tab/PowerShell)
109+
106110
```azurepowershell
107111
-storageAccountType "Premium_ZRS"
108112
```
109113

114+
---
115+
110116
## Clean up resources
111117

112118
When the Azure resources are no longer needed, clean up the resources you deployed by deleting the resource group.

0 commit comments

Comments
 (0)