You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/copy-outputs.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Define multiple instances of an output value
3
3
description: Use copy operation in an Azure Resource Manager template (ARM template) to iterate multiple times when returning a value from a deployment.
4
4
ms.topic: how-to
5
5
ms.custom: devx-track-arm-template
6
-
ms.date: 06/20/2024
6
+
ms.date: 07/23/2025
7
7
---
8
8
9
9
# Output iteration in ARM templates
@@ -71,7 +71,7 @@ The following example creates a variable number of storage accounts and returns
The samples assign the custom role to the user on the resource group level.
156
156
157
157
When using a key vault with the template for a [Managed Application](../managed-applications/overview.md), you must grant access to the **Appliance Resource Provider** service principal. For more information, see [Access Key Vault secret when deploying Azure Managed Applications](../managed-applications/key-vault-access.md).
158
158
@@ -188,7 +188,7 @@ The following template deploys a SQL server that includes an administrator passw
188
188
"resources": [
189
189
{
190
190
"type": "Microsoft.Sql/servers",
191
-
"apiVersion": "2021-11-01",
191
+
"apiVersion": "2024-05-01-preview",
192
192
"name": "[parameters('sqlServerName')]",
193
193
"location": "[parameters('location')]",
194
194
"properties": {
@@ -312,7 +312,7 @@ The following template dynamically creates the key vault ID and passes it as a p
312
312
"resources": [
313
313
{
314
314
"type": "Microsoft.Resources/deployments",
315
-
"apiVersion": "2020-10-01",
315
+
"apiVersion": "2025-04-01",
316
316
"name": "dynamicSecret",
317
317
"properties": {
318
318
"mode": "Incremental",
@@ -339,7 +339,7 @@ The following template dynamically creates the key vault ID and passes it as a p
0 commit comments