Skip to content

Commit 45a6258

Browse files
authored
Merge pull request #115604 from Gamecock/patch-1
Update deploy-cli.md to fix typo in array sample
2 parents fa98128 + b5b8f7d commit 45a6258

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-resource-manager/bicep/deploy-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ To pass inline parameters, provide the values in `parameters`. For example, to p
103103
az deployment group create \
104104
--resource-group testgroup \
105105
--template-file <path-to-bicep> \
106-
--parameters exampleString='inline string' exampleArray='("value1", "value2")'
106+
--parameters exampleString='inline string' exampleArray='["value1", "value2"]'
107107
```
108108

109109
If you're using Azure CLI with Windows Command Prompt (CMD) or PowerShell, pass the array in the format: `exampleArray="['value1','value2']"`.

0 commit comments

Comments
 (0)