Skip to content

Commit e66bd11

Browse files
authored
Merge pull request #108747 from tfitzmac/0323arm7
add arm term
2 parents 02d91bc + 88a00f0 commit e66bd11

8 files changed

+18
-18
lines changed

articles/azure-resource-manager/templates/template-tutorial-add-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ ms.topic: tutorial
77
ms.author: jgao
88
---
99

10-
# Tutorial: Add template functions to your Resource Manager template
10+
# Tutorial: Add template functions to your ARM template
1111

12-
In this tutorial, you learn how to add [template functions](template-functions.md) to your template. You use functions to dynamically construct values. In addition to these system-provided template functions, you can also create [user-defined functions](./template-user-defined-functions.md). This tutorial takes **7 minutes** to complete.
12+
In this tutorial, you learn how to add [template functions](template-functions.md) to your Azure Resource Manager (ARM) template. You use functions to dynamically construct values. In addition to these system-provided template functions, you can also create [user-defined functions](./template-user-defined-functions.md). This tutorial takes **7 minutes** to complete.
1313

1414
## Prerequisites
1515

articles/azure-resource-manager/templates/template-tutorial-add-outputs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ ms.topic: tutorial
77
ms.author: jgao
88
---
99

10-
# Tutorial: Add outputs to your Resource Manager template
10+
# Tutorial: Add outputs to your ARM template
1111

12-
In this tutorial, you learn how to return a value from your template. You use outputs when you need a value from a deployed resource. This tutorial takes **7 minutes** to complete.
12+
In this tutorial, you learn how to return a value from your Azure Resource Manager (ARM) template. You use outputs when you need a value from a deployed resource. This tutorial takes **7 minutes** to complete.
1313

1414
## Prerequisites
1515

articles/azure-resource-manager/templates/template-tutorial-add-parameters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ ms.topic: tutorial
77
ms.author: jgao
88
---
99

10-
# Tutorial: Add parameters to your Resource Manager template
10+
# Tutorial: Add parameters to your ARM template
1111

12-
In the [previous tutorial](template-tutorial-add-resource.md), you learned how to add a storage account to the template and deploy it. In this tutorial, you learn how to improve the template by adding parameters. This tutorial takes about **14 minutes** to complete.
12+
In the [previous tutorial](template-tutorial-add-resource.md), you learned how to add a storage account to the template and deploy it. In this tutorial, you learn how to improve the Azure Resource Manager (ARM) template by adding parameters. This tutorial takes about **14 minutes** to complete.
1313

1414
## Prerequisites
1515

articles/azure-resource-manager/templates/template-tutorial-add-resource.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.topic: tutorial
77
ms.author: jgao
88
---
99

10-
# Tutorial: Add a resource to your Resource Manager template
10+
# Tutorial: Add a resource to your ARM template
1111

1212
In the [previous tutorial](template-tutorial-create-first-template.md), you learned how to create a blank template and deploy it. Now, you're ready to deploy an actual resource. In this tutorial, you add a storage account. It takes about **9 minutes** to complete this tutorial.
1313

@@ -32,7 +32,7 @@ Guessing a unique name for a storage account isn't easy and doesn't work well fo
3232

3333
## Resource properties
3434

35-
You may be wondering how to find the properties to use for each resource type. You can use the [Resource Manager template reference](/azure/templates/) to find the resource types you want to deploy.
35+
You may be wondering how to find the properties to use for each resource type. You can use the [ARM template reference](/azure/templates/) to find the resource types you want to deploy.
3636

3737
Every resource you deploy has at least the following three properties:
3838

articles/azure-resource-manager/templates/template-tutorial-add-tags.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ ms.topic: tutorial
77
ms.author: jgao
88
---
99

10-
# Tutorial: Add tags in your Resource Manager template
10+
# Tutorial: Add tags in your ARM template
1111

12-
In this tutorial, you learn how to add tags to resources in your template. [Tags](../management/tag-resources.md) help you logically organize your resources. The tag values show up in cost reports. This tutorial takes **8 minutes** to complete.
12+
In this tutorial, you learn how to add tags to resources in your Azure Resource Manager (ARM) template. [Tags](../management/tag-resources.md) help you logically organize your resources. The tag values show up in cost reports. This tutorial takes **8 minutes** to complete.
1313

1414
## Prerequisites
1515

articles/azure-resource-manager/templates/template-tutorial-add-variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ ms.topic: tutorial
77
ms.author: jgao
88
---
99

10-
# Tutorial: Add variables to your Resource Manager template
10+
# Tutorial: Add variables to your ARM template
1111

12-
In this tutorial, you learn how to add a variable to your template. Variables simplify your templates by enabling you to write an expression once and reuse it throughout the template. This tutorial takes **7 minutes** to complete.
12+
In this tutorial, you learn how to add a variable to your Azure Resource Manager (ARM) template. Variables simplify your templates by enabling you to write an expression once and reuse it throughout the template. This tutorial takes **7 minutes** to complete.
1313

1414
## Prerequisites
1515

articles/azure-resource-manager/templates/template-tutorial-create-first-template.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ ms.author: jgao
1010

1111
---
1212

13-
# Tutorial: Create and deploy your first Azure Resource Manager template
13+
# Tutorial: Create and deploy your first ARM template
1414

15-
This tutorial introduces you to Azure Resource Manager templates. It shows you how to create a starter template and deploy it to Azure. You'll learn about the structure of the template and the tools you'll need for working with templates. It takes about **12 minutes** to complete this tutorial, but the actual time will vary based on how many tools you need to install.
15+
This tutorial introduces you to Azure Resource Manager (ARM) templates. It shows you how to create a starter template and deploy it to Azure. You'll learn about the structure of the template and the tools you'll need for working with templates. It takes about **12 minutes** to complete this tutorial, but the actual time will vary based on how many tools you need to install.
1616

17-
This tutorial is the first of a series. As you progress through the series, you modify the starting template step-by-step until you've explored all of the core parts of a Resource Manager template. These elements are the building blocks for much more complex templates. We hope by the end of the series you're confident creating your own templates and ready to automate your deployments with templates.
17+
This tutorial is the first of a series. As you progress through the series, you modify the starting template step-by-step until you've explored all of the core parts of an ARM template. These elements are the building blocks for much more complex templates. We hope by the end of the series you're confident creating your own templates and ready to automate your deployments with templates.
1818

1919
If you want to learn about the benefits of using templates and why you should automate deployment with templates, see [Azure Resource Manager templates](overview.md).
2020

@@ -26,7 +26,7 @@ Let's start by making sure you have the tools you need to create and deploy temp
2626

2727
### Editor
2828

29-
Templates are JSON files. To create templates, you need a good JSON editor. We recommend Visual Studio Code with the Resource Manager Tools extension. If you need to install these tools, see [Use Visual Studio Code to create Azure Resource Manager templates](use-vs-code-to-create-template.md).
29+
Templates are JSON files. To create templates, you need a good JSON editor. We recommend Visual Studio Code with the Resource Manager Tools extension. If you need to install these tools, see [Use Visual Studio Code to create ARM templates](use-vs-code-to-create-template.md).
3030

3131
### Command-line deployment
3232

articles/azure-resource-manager/templates/template-tutorial-use-parameter-file.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ ms.topic: tutorial
77
ms.author: jgao
88
---
99

10-
# Tutorial: Use parameter files to deploy your Resource Manager template
10+
# Tutorial: Use parameter files to deploy your ARM template
1111

12-
In this tutorial, you learn how to use [parameter files](parameter-files.md) to store the values you pass in during deployment. In the previous tutorials, you used inline parameters with your deployment command. This approach worked for testing your template, but when automating deployments it can be easier to pass a set of values for your environment. Parameter files make it easier to package parameter values for a specific environment. In this tutorial, you'll create parameter files for development and production environments. It takes about **12 minutes** to complete.
12+
In this tutorial, you learn how to use [parameter files](parameter-files.md) to store the values you pass in during deployment. In the previous tutorials, you used inline parameters with your deployment command. This approach worked for testing your Azure Resource Manager (ARM) template, but when automating deployments it can be easier to pass a set of values for your environment. Parameter files make it easier to package parameter values for a specific environment. In this tutorial, you'll create parameter files for development and production environments. It takes about **12 minutes** to complete.
1313

1414
## Prerequisites
1515

0 commit comments

Comments
 (0)