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/template-tutorial-create-encrypted-storage-accounts.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
@@ -8,9 +8,9 @@ ms.author: jgao
8
8
ms.custom: seodec18
9
9
---
10
10
11
-
# Tutorial: Utilize the Azure Resource Manager template reference
11
+
# Tutorial: Utilize the ARM template reference
12
12
13
-
Learn how to find the template schema information, and use the information to create Azure Resource Manager templates.
13
+
Learn how to find the template schema information, and use the information to create Azure Resource Manager (ARM) templates.
14
14
15
15
In this tutorial, you use a base template from Azure Quickstart templates. Using template reference documentation, you customize the template to create an encrypted Storage account.
16
16
@@ -31,11 +31,11 @@ If you don't have an Azure subscription, [create a free account](https://azure.m
31
31
32
32
To complete this article, you need:
33
33
34
-
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create Azure Resource Manager templates](use-vs-code-to-create-template.md).
34
+
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create ARM templates](use-vs-code-to-create-template.md).
35
35
36
36
## Open a Quickstart template
37
37
38
-
[Azure QuickStart Templates](https://azure.microsoft.com/resources/templates/) is a repository for Resource Manager templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this quickstart is called [Create a standard storage account](https://azure.microsoft.com/resources/templates/101-storage-account-create/). The template defines an Azure Storage account resource.
38
+
[Azure QuickStart Templates](https://azure.microsoft.com/resources/templates/) is a repository for ARM templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this quickstart is called [Create a standard storage account](https://azure.microsoft.com/resources/templates/101-storage-account-create/). The template defines an Azure Storage account resource.
39
39
40
40
1. From Visual Studio Code, select **File**>**Open File**.
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/template-tutorial-create-multiple-instances.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@ ms.topic: tutorial
7
7
ms.author: jgao
8
8
---
9
9
10
-
# Tutorial: Create multiple resource instances with Resource Manager templates
10
+
# Tutorial: Create multiple resource instances with ARM templates
11
11
12
-
Learn how to iterate in your Azure Resource Manager template to create multiple instances of an Azure resource. In this tutorial, you modify a template to create three storage account instances.
12
+
Learn how to iterate in your Azure Resource Manager (ARM) template to create multiple instances of an Azure resource. In this tutorial, you modify a template to create three storage account instances.
@@ -26,11 +26,11 @@ If you don't have an Azure subscription, [create a free account](https://azure.m
26
26
27
27
To complete this article, you need:
28
28
29
-
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create Azure Resource Manager templates](use-vs-code-to-create-template.md).
29
+
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create ARM templates](use-vs-code-to-create-template.md).
30
30
31
31
## Open a Quickstart template
32
32
33
-
[Azure QuickStart Templates](https://azure.microsoft.com/resources/templates/) is a repository for Resource Manager templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this quickstart is called [Create a standard storage account](https://azure.microsoft.com/resources/templates/101-storage-account-create/). The template defines an Azure Storage account resource.
33
+
[Azure QuickStart Templates](https://azure.microsoft.com/resources/templates/) is a repository for ARM templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this quickstart is called [Create a standard storage account](https://azure.microsoft.com/resources/templates/101-storage-account-create/). The template defines an Azure Storage account resource.
34
34
35
35
1. From Visual Studio Code, select **File**>**Open File**.
36
36
2. In **File name**, paste the following URL:
@@ -103,7 +103,7 @@ The completed template looks like:
103
103
}
104
104
```
105
105
106
-
For more information about creating multiple instances, see [Deploy multiple instances of a resource or property in Azure Resource Manager Templates](./copy-resources.md)
106
+
For more information about creating multiple instances, see [Deploy multiple instances of a resource or property in ARM templates](./copy-resources.md)
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/template-tutorial-create-templates-with-dependent-resources.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,11 @@ ms.topic: tutorial
7
7
ms.author: jgao
8
8
---
9
9
10
-
# Tutorial: Create Azure Resource Manager templates with dependent resources
10
+
# Tutorial: Create ARM templates with dependent resources
11
11
12
-
Learn how to create an Azure Resource Manager template to deploy multiple resources and configure the deployment order. After you create the template, you deploy the template using the Cloud shell from the Azure portal.
12
+
Learn how to create an Azure Resource Manager (ARM) template to deploy multiple resources and configure the deployment order. After you create the template, you deploy the template using the Cloud shell from the Azure portal.
13
13
14
-
In this tutorial, you create a storage account, a virtual machine, a virtual network, and some other dependent resources. Some of the resources cannot be deployed until another resource exists. For example, you can't create the virtual machine until its storage account and network interface exist. You define this relationship by making one resource as dependent on the other resources. Resource Manager evaluates the dependencies between resources, and deploys them in their dependent order. When resources aren't dependent on each other, Resource Manager deploys them in parallel. For more information, see [Define the order for deploying resources in Azure Resource Manager Templates](./define-resource-dependency.md).
14
+
In this tutorial, you create a storage account, a virtual machine, a virtual network, and some other dependent resources. Some of the resources cannot be deployed until another resource exists. For example, you can't create the virtual machine until its storage account and network interface exist. You define this relationship by making one resource as dependent on the other resources. Resource Manager evaluates the dependencies between resources, and deploys them in their dependent order. When resources aren't dependent on each other, Resource Manager deploys them in parallel. For more information, see [Define the order for deploying resources in ARM templates](./define-resource-dependency.md).
15
15
16
16

17
17
@@ -28,17 +28,17 @@ If you don't have an Azure subscription, [create a free account](https://azure.m
28
28
29
29
To complete this article, you need:
30
30
31
-
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create Azure Resource Manager templates](use-vs-code-to-create-template.md).
31
+
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create ARM templates](use-vs-code-to-create-template.md).
32
32
* To increase security, use a generated password for the virtual machine administrator account. Here is a sample for generating a password:
33
33
34
34
```console
35
35
openssl rand -base64 32
36
36
```
37
-
Azure Key Vault is designed to safeguard cryptographic keys and other secrets. For more information, see [Tutorial: Integrate Azure Key Vault in Resource Manager Template deployment](./template-tutorial-use-key-vault.md). We also recommend you to update your password every three months.
37
+
Azure Key Vault is designed to safeguard cryptographic keys and other secrets. For more information, see [Tutorial: Integrate Azure Key Vault in ARM template deployment](./template-tutorial-use-key-vault.md). We also recommend you to update your password every three months.
38
38
39
39
## Open a Quickstart template
40
40
41
-
Azure QuickStart Templates is a repository for Resource Manager templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this tutorial is called [Deploy a simple Windows VM](https://azure.microsoft.com/resources/templates/101-vm-simple-windows/).
41
+
Azure QuickStart Templates is a repository for ARM templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this tutorial is called [Deploy a simple Windows VM](https://azure.microsoft.com/resources/templates/101-vm-simple-windows/).
42
42
43
43
1. From Visual Studio Code, select **File**>**Open File**.
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/template-tutorial-deployment-script.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
@@ -18,7 +18,7 @@ ms.author: jgao
18
18
19
19
# Tutorial: Use deployment scripts to create a self-signed certificate (Preview)
20
20
21
-
Learn how to use deployment scripts in Azure Resource Manage templates. Deployment scripts can be used to perform custom steps that can't be done by Resource Manager templates. For example, creating a self-signed certificate. In this tutorial, you create a template to deploy an Azure key vault, and then use a `Microsoft.Resources/deploymentScripts` resource in the same template to create a certificate and then add the certificate to the key vault. To learn more about deployment script, see [Use deployment scripts in Azure Resource Manager templates](./deployment-script-template.md).
21
+
Learn how to use deployment scripts in Azure Resource Manage (ARM) templates. Deployment scripts can be used to perform custom steps that can't be done by ARM templates. For example, creating a self-signed certificate. In this tutorial, you create a template to deploy an Azure key vault, and then use a `Microsoft.Resources/deploymentScripts` resource in the same template to create a certificate and then add the certificate to the key vault. To learn more about deployment script, see [Use deployment scripts in ARM templates](./deployment-script-template.md).
22
22
23
23
> [!IMPORTANT]
24
24
> Two deployment script resources, a storage account and a container instance, are created in the same resource group for script execution and troubleshooting. These resources are usually deleted by the script service when the script execution gets in a terminal state. You are billed for the resources until the resources are deleted. To learn more, see [Clean up deployment script resources](./deployment-script-template.md#clean-up-deployment-script-resources).
@@ -36,7 +36,7 @@ This tutorial covers the following tasks:
36
36
37
37
To complete this article, you need:
38
38
39
-
***[Visual Studio Code](https://code.visualstudio.com/) with the Resource Manager Tools extension**. See [Use Visual Studio Code to create Azure Resource Manager templates](./use-vs-code-to-create-template.md).
39
+
***[Visual Studio Code](https://code.visualstudio.com/) with the Resource Manager Tools extension**. See [Use Visual Studio Code to create ARM templates](./use-vs-code-to-create-template.md).
40
40
41
41
***A user-assigned managed identity with the contributor's role at the subscription level**. This identity is used to execute deployment scripts. To create one, see [User-assigned managed identity](../../active-directory/managed-identities-azure-resources/qs-configure-portal-windows-vm.md#user-assigned-managed-identity). You need the identity ID when you deploy the template. The format of the identity is:
42
42
@@ -55,7 +55,7 @@ To complete this article, you need:
55
55
56
56
## Open a Quickstart template
57
57
58
-
Instead of creating a template from scratch, you open a template from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/). Azure Quickstart Templates is a repository for Resource Manager templates.
58
+
Instead of creating a template from scratch, you open a template from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/). Azure Quickstart Templates is a repository for ARM templates.
59
59
60
60
The template used in this quickstart is called [Create an Azure Key Vault and a secret](https://azure.microsoft.com/resources/templates/101-key-vault-create/). The template creates a key vault, and then adds a secret to the key vault.
61
61
@@ -341,7 +341,7 @@ When the Azure resources are no longer needed, clean up the resources you deploy
341
341
342
342
## Next steps
343
343
344
-
In this tutorial, you learned how to use deployment script in Azure Resource Manager templates. To learn how to deploy Azure resources based on conditions, see:
344
+
In this tutorial, you learned how to use deployment script in ARM templates. To learn how to deploy Azure resources based on conditions, see:
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/template-tutorial-use-conditions.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@ ms.topic: tutorial
7
7
ms.author: jgao
8
8
---
9
9
10
-
# Tutorial: Use condition in Azure Resource Manager templates
10
+
# Tutorial: Use condition in ARM templates
11
11
12
-
Learn how to deploy Azure resources based on conditions.
12
+
Learn how to deploy Azure resources based on conditions in an Azure Resource Manager (ARM) template.
13
13
14
14
In the [Set resource deployment order](./template-tutorial-create-templates-with-dependent-resources.md) tutorial, you create a virtual machine, a virtual network, and some other dependent resources including a storage account. Instead of creating a new storage account every time, you let people choose between creating a new storage account and using an existing storage account. To accomplish this goal, you define an additional parameter. If the value of the parameter is "new", a new storage account is created. Otherwise, an existing storage account with the name provided is used.
15
15
@@ -26,28 +26,28 @@ This tutorial covers the following tasks:
26
26
This tutorial only covers a basic scenario of using conditions. For more information, see:
*[Comparison functions for Azure Resource Manager templates](./template-functions-comparison.md)
31
+
*[Comparison functions for ARM templates](./template-functions-comparison.md)
32
32
33
33
If you don't have an Azure subscription, [create a free account](https://azure.microsoft.com/free/) before you begin.
34
34
35
35
## Prerequisites
36
36
37
37
To complete this article, you need:
38
38
39
-
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create Azure Resource Manager templates](use-vs-code-to-create-template.md).
39
+
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create ARM templates](use-vs-code-to-create-template.md).
40
40
* To increase security, use a generated password for the virtual machine administrator account. Here is a sample for generating a password:
41
41
42
42
```console
43
43
openssl rand -base64 32
44
44
```
45
45
46
-
Azure Key Vault is designed to safeguard cryptographic keys and other secrets. For more information, see [Tutorial: Integrate Azure Key Vault in Resource Manager Template deployment](./template-tutorial-use-key-vault.md). We also recommend you to update your password every three months.
46
+
Azure Key Vault is designed to safeguard cryptographic keys and other secrets. For more information, see [Tutorial: Integrate Azure Key Vault in ARM template deployment](./template-tutorial-use-key-vault.md). We also recommend you to update your password every three months.
47
47
48
48
## Open a Quickstart template
49
49
50
-
Azure QuickStart Templates is a repository for Resource Manager templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this tutorial is called [Deploy a simple Windows VM](https://azure.microsoft.com/resources/templates/101-vm-simple-windows/).
50
+
Azure QuickStart Templates is a repository for ARM templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this tutorial is called [Deploy a simple Windows VM](https://azure.microsoft.com/resources/templates/101-vm-simple-windows/).
51
51
52
52
1. From Visual Studio Code, select **File**>**Open File**.
0 commit comments