Skip to content

Commit fcbda42

Browse files
committed
Fix typos in ARM/templates/syntax
* Fix missing bracket in "<definition-name" in Definitions. * Add missing value placeholderss for fields of properties > copy loop.
1 parent 45fa6a6 commit fcbda42

File tree

1 file changed

+3
-3
lines changed
  • articles/azure-resource-manager/templates

1 file changed

+3
-3
lines changed

articles/azure-resource-manager/templates/syntax.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ In the `definitions` section of the template, specify the schemas used for valid
5757

5858
```json
5959
"definitions": {
60-
"<definition-name": {
60+
"<definition-name>": {
6161
"type": "<data-type-of-definition>",
6262
"allowedValues": [ "<array-of-allowed-values>" ],
6363
"minValue": <minimum-value-for-int>,
@@ -287,8 +287,8 @@ You define resources with the following structure:
287287
"<settings-for-the-resource>",
288288
"copy": [
289289
{
290-
"name": ,
291-
"count": ,
290+
"name": "<name-of-copy-loop>",
291+
"count": <number-of-iterations>,
292292
"input": {}
293293
}
294294
]

0 commit comments

Comments
 (0)