Skip to content

Commit ab892b0

Browse files
authored
Merge pull request #108729 from tfitzmac/0323arm3
Add arm term
2 parents 2928a45 + 9e4b3dc commit ab892b0

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

articles/azure-resource-manager/templates/conditional-resource-deployment.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ms.topic: conceptual
55
ms.date: 12/03/2019
66
---
77

8-
# Conditional deployment in Resource Manager templates
8+
# Conditional deployment in ARM templates
99

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.
1111

1212
## New or existing resource
1313

@@ -82,5 +82,5 @@ If you deploy a template with [complete mode](deployment-modes.md) and a resourc
8282

8383
## Next steps
8484

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).

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Use copy operation in an Azure Resource Manager template to iterate
44
ms.topic: conceptual
55
ms.date: 02/13/2020
66
---
7-
# Property iteration in Azure Resource Manager templates
7+
# Property iteration in ARM templates
88

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.
1010

1111
You can also use copy with [resources](copy-resources.md), [variables](copy-variables.md), and [outputs](copy-outputs.md).
1212

@@ -185,11 +185,11 @@ The following example shows a common scenario for creating more than one value f
185185

186186
## Next steps
187187

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).
189189
* 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).
195195

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Use copy operation and arrays in an Azure Resource Manager template
44
ms.topic: conceptual
55
ms.date: 09/27/2019
66
---
7-
# Resource iteration in Azure Resource Manager templates
7+
# Resource iteration in ARM templates
88

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.
1010

1111
You can also use copy with [properties](copy-properties.md), [variables](copy-variables.md) and [outputs](copy-outputs.md).
1212

@@ -274,12 +274,12 @@ The following examples show common scenarios for creating more than one instance
274274

275275
## Next steps
276276

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).
278278
* 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)
282282
* 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).
285285

articles/azure-resource-manager/templates/define-resource-dependency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Describes how to set one resource as dependent on another resource
44
ms.topic: conceptual
55
ms.date: 12/03/2019
66
---
7-
# Define the order for deploying resources in Azure Resource Manager templates
7+
# Define the order for deploying resources in ARM templates
88

99
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.
1010

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ms.topic: conceptual
55
ms.date: 09/04/2019
66
---
77

8-
# Set resource location in Resource Manager template
8+
# Set resource location in ARM template
99

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.
1111

1212
## Get available locations
1313

@@ -91,4 +91,4 @@ The following example shows a storage account that is deployed to a location spe
9191
## Next steps
9292

9393
* 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

Comments
 (0)