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 dc1a532 commit 09d11c2Copy full SHA for 09d11c2
articles/azure-resource-manager/bicep/compare-template-syntax.md
@@ -56,7 +56,7 @@ name: orgName
56
```
57
58
```json
59
-"name": "[parameters('orgName'))]"
+"name": "[parameters('orgName')]"
60
61
62
## Variables
@@ -70,7 +70,7 @@ var description = 'example value'
70
71
"variables": {
72
"description": "example value"
73
-},
+}
74
75
76
To get a variable value, use the name you defined:
@@ -80,7 +80,7 @@ workloadSetting: description
80
81
82
83
-"workloadSetting": "[variables('description'))]"
+"workloadSetting": "[variables('description')]"
84
85
86
## Strings
0 commit comments