Skip to content

Commit b5b8f7d

Browse files
authored
Update deploy-cli.md to fix typo in array sample
fixes https://github.com/MicrosoftDocs/azure-docs/issues/115603
1 parent f3a807d commit b5b8f7d

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)