Skip to content

Commit 60ce7b5

Browse files
authored
Merge pull request #111777 from tfitzmac/0417output
fix copy output
2 parents 110f6a8 + b49953d commit 60ce7b5

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

articles/azure-resource-manager/templates/copy-outputs.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Define multiple instances of an output value
33
description: Use copy operation in an Azure Resource Manager template to iterate multiple times when returning a value from a deployment.
44
ms.topic: conceptual
5-
ms.date: 02/25/2020
5+
ms.date: 04/17/2020
66
---
77
# Output iteration in ARM templates
88

@@ -15,12 +15,10 @@ You can also use copy with [resources](copy-resources.md), [properties in a reso
1515
The copy element has the following general format:
1616

1717
```json
18-
"copy": [
19-
{
20-
"count": <number-of-iterations>,
21-
"input": <values-for-the-variable>
22-
}
23-
]
18+
"copy": {
19+
"count": <number-of-iterations>,
20+
"input": <values-for-the-output>
21+
}
2422
```
2523

2624
The **count** property specifies the number of iterations you want for the output value.

0 commit comments

Comments
 (0)