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/conditional-resource-deployment.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@ ms.topic: conceptual
5
5
ms.date: 12/03/2019
6
6
---
7
7
8
-
# Conditional deployment in Resource Manager templates
8
+
# Conditional deployment in ARM templates
9
9
10
-
Sometimes you need to optionally deploy a resource in a template. Use the `condition` element to specify whether the resource is deployed. The value for this element resolves to true or false. When the value is true, the resource is created. When the value is false, the resource isn't created. The value can only be applied to the whole resource.
10
+
Sometimes you need to optionally deploy a resource in an Azure Resource Manager (ARM) template. Use the `condition` element to specify whether the resource is deployed. The value for this element resolves to true or false. When the value is true, the resource is created. When the value is false, the resource isn't created. The value can only be applied to the whole resource.
11
11
12
12
## New or existing resource
13
13
@@ -82,5 +82,5 @@ If you deploy a template with [complete mode](deployment-modes.md) and a resourc
82
82
83
83
## Next steps
84
84
85
-
* For recommendations about creating templates, see [Azure Resource Manager template best practices](template-best-practices.md).
86
-
* To create multiple instances of a resource, see [Resource iteration in Azure Resource Manager templates](copy-resources.md).
85
+
* For recommendations about creating templates, see [ARM template best practices](template-best-practices.md).
86
+
* To create multiple instances of a resource, see [Resource iteration in ARM templates](copy-resources.md).
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/copy-properties.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@ description: Use copy operation in an Azure Resource Manager template to iterate
4
4
ms.topic: conceptual
5
5
ms.date: 02/13/2020
6
6
---
7
-
# Property iteration in Azure Resource Manager templates
7
+
# Property iteration in ARM templates
8
8
9
-
This article shows you how to create more than one instance of a property in your Azure Resource Manager template. By adding the **copy** element to the properties section of a resource in your template, you can dynamically set the number of items for a property during deployment. You also avoid having to repeat template syntax.
9
+
This article shows you how to create more than one instance of a property in your Azure Resource Manager (ARM) template. By adding the **copy** element to the properties section of a resource in your template, you can dynamically set the number of items for a property during deployment. You also avoid having to repeat template syntax.
10
10
11
11
You can also use copy with [resources](copy-resources.md), [variables](copy-variables.md), and [outputs](copy-outputs.md).
12
12
@@ -185,11 +185,11 @@ The following example shows a common scenario for creating more than one value f
185
185
186
186
## Next steps
187
187
188
-
* To go through a tutorial, see [Tutorial: create multiple resource instances using Resource Manager templates](template-tutorial-create-multiple-instances.md).
188
+
* To go through a tutorial, see [Tutorial: create multiple resource instances using ARM templates](template-tutorial-create-multiple-instances.md).
189
189
* For other uses of the copy element, see:
190
-
* [Resource iteration in Azure Resource Manager templates](copy-resources.md)
191
-
* [Variable iteration in Azure Resource Manager templates](copy-variables.md)
192
-
* [Output iteration in Azure Resource Manager templates](copy-outputs.md)
193
-
* If you want to learn about the sections of a template, see [Authoring Azure Resource Manager Templates](template-syntax.md).
194
-
* To learn how to deploy your template, see [Deploy an application with Azure Resource Manager Template](deploy-powershell.md).
190
+
* [Resource iteration in ARM templates](copy-resources.md)
191
+
* [Variable iteration in ARM templates](copy-variables.md)
192
+
* [Output iteration in ARM templates](copy-outputs.md)
193
+
* If you want to learn about the sections of a template, see [Authoring ARM templates](template-syntax.md).
194
+
* To learn how to deploy your template, see [Deploy an application with ARM template](deploy-powershell.md).
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/copy-resources.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@ description: Use copy operation and arrays in an Azure Resource Manager template
4
4
ms.topic: conceptual
5
5
ms.date: 09/27/2019
6
6
---
7
-
# Resource iteration in Azure Resource Manager templates
7
+
# Resource iteration in ARM templates
8
8
9
-
This article shows you how to create more than one instance of a resource in your Azure Resource Manager template. By adding the **copy** element to the resources section of your template, you can dynamically set the number of resources to deploy. You also avoid having to repeat template syntax.
9
+
This article shows you how to create more than one instance of a resource in your Azure Resource Manager (ARM) template. By adding the **copy** element to the resources section of your template, you can dynamically set the number of resources to deploy. You also avoid having to repeat template syntax.
10
10
11
11
You can also use copy with [properties](copy-properties.md), [variables](copy-variables.md) and [outputs](copy-outputs.md).
12
12
@@ -274,12 +274,12 @@ The following examples show common scenarios for creating more than one instance
274
274
275
275
## Next steps
276
276
277
-
* To go through a tutorial, see [Tutorial: create multiple resource instances using Resource Manager templates](template-tutorial-create-multiple-instances.md).
277
+
* To go through a tutorial, see [Tutorial: create multiple resource instances using ARM templates](template-tutorial-create-multiple-instances.md).
278
278
* For other uses of the copy element, see:
279
-
* [Property iteration in Azure Resource Manager templates](copy-properties.md)
280
-
* [Variable iteration in Azure Resource Manager templates](copy-variables.md)
281
-
* [Output iteration in Azure Resource Manager templates](copy-outputs.md)
279
+
* [Property iteration in ARM templates](copy-properties.md)
280
+
* [Variable iteration in ARM templates](copy-variables.md)
281
+
* [Output iteration in ARM templates](copy-outputs.md)
282
282
* For information about using copy with nested templates, see [Using copy](linked-templates.md#using-copy).
283
-
* If you want to learn about the sections of a template, see [Authoring Azure Resource Manager Templates](template-syntax.md).
284
-
* To learn how to deploy your template, see [Deploy an application with Azure Resource Manager Template](deploy-powershell.md).
283
+
* If you want to learn about the sections of a template, see [Authoring ARM templates](template-syntax.md).
284
+
* To learn how to deploy your template, see [Deploy an application with ARM template](deploy-powershell.md).
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/define-resource-dependency.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Describes how to set one resource as dependent on another resource
4
4
ms.topic: conceptual
5
5
ms.date: 12/03/2019
6
6
---
7
-
# Define the order for deploying resources in Azure Resource Manager templates
7
+
# Define the order for deploying resources in ARM templates
8
8
9
9
When deploying a resource, you may need to make sure other resources exist before it's deployed. For example, you need a SQL server before deploying a SQL database. You define this relationship by marking one resource as dependent on the other resource. You define a dependency with the **dependsOn** element, or by using the **reference** function.
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/resource-location.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
@@ -5,9 +5,9 @@ ms.topic: conceptual
5
5
ms.date: 09/04/2019
6
6
---
7
7
8
-
# Set resource location in Resource Manager template
8
+
# Set resource location in ARM template
9
9
10
-
When deploying a template, you must provide a location for each resource. The location doesn't need to be the same location as the resource group location.
10
+
When deploying an Azure Resource Manager (ARM) template, you must provide a location for each resource. The location doesn't need to be the same location as the resource group location.
11
11
12
12
## Get available locations
13
13
@@ -91,4 +91,4 @@ The following example shows a storage account that is deployed to a location spe
91
91
## Next steps
92
92
93
93
* For the full list of template functions, see [Azure Resource Manager template functions](template-functions.md).
94
-
* For more information about template files, see [Understand the structure and syntax of Azure Resource Manager templates](template-syntax.md).
94
+
* For more information about template files, see [Understand the structure and syntax of ARM templates](template-syntax.md).
0 commit comments