Skip to content

Commit 1b89b6c

Browse files
committed
update
1 parent 9e26e05 commit 1b89b6c

File tree

1 file changed

+8
-14
lines changed

1 file changed

+8
-14
lines changed

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

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
title: Utilize template reference
3-
description: Utilize the Azure Resource Manager template reference to create a template.
2+
title: Use template reference
3+
description: Use the Azure Resource Manager template reference to create a template.
44
author: mumian
55
ms.date: 03/27/2020
66
ms.topic: tutorial
77
ms.author: jgao
88
ms.custom: seodec18
99
---
1010

11-
# Tutorial: Utilize the ARM template reference
11+
# Tutorial: Utilize the Resource Manager template reference
1212

1313
Learn how to find the template schema information, and use the information to create Azure Resource Manager (ARM) templates.
1414

@@ -60,17 +60,13 @@ To complete this article, you need:
6060
* **resources**: specify the resource types that are deployed or updated in a resource group.
6161
* **outputs**: specify the values that are returned after deployment.
6262

63-
1. Expand **resources**. There is a `Microsoft.Storage/storageAccounts` resource defined.
63+
1. Expand **resources**. There is a `Microsoft.Storage/storageAccounts` resource defined. The SKU name uses a parameter value. The parameter is called **storageAccountType**.
6464

6565
![Resource Manager template storage account definition](./media/template-tutorial-use-template-reference/resource-manager-template-storage-resource.png)
6666

67-
The SKU name uses a parameter value. The parameter is called **storageAccountType**.
67+
1. Expand **parameters** to see how **storageAccountType** is defined. The parameter has four allowed values. You will find the other allowed values, and then revise the parameter definition.
6868

69-
1. Expand **parameters** to see how **storageAccountType** is defined:
70-
71-
![Resource Manager template storage account definition](./media/template-tutorial-use-template-reference/resource-manager-template-storage-resource.png)
72-
73-
The parameter has four allowed values.
69+
![Resource Manager template storage account resources skus](./media/template-tutorial-use-template-reference/resource-manager-template-storage-resources-skus-old.png)
7470

7571
## Find the template reference
7672

@@ -81,15 +77,13 @@ To complete this article, you need:
8177

8278
A resource provider usually has several API versions:
8379

84-
![Resource Manager template storage account resources skus](./media/template-tutorial-use-template-reference/resource-manager-template-storage-resources-skus-old.png)
85-
86-
80+
![Resource Manager template reference storage account versions](./media/template-tutorial-use-template-reference/resource-manager-template-resources-reference-storage-accounts-versions.png)
8781

8882
1. Select **All resources** under **Storage** from the left pane. This page lists the resource types and versions of the storage resource provider. It is recommended to use the latest API versions for the resource types defined in your template.
8983

9084
![Resource Manager template reference storage account types versions](./media/template-tutorial-use-template-reference/resource-manager-template-resources-reference-storage-accounts-types-versions.png)
9185

92-
1. Select the latest version of the **storageAccount** resource type. The latest version is **2019-06-01** when this article is written.
86+
1. Select the latest version of the **storageAccount** resource type. The latest version is **2019-06-01** when this article is written. Make sure this version matches the version used for the storage account resource in your template. If you update the API version, verify the resource definition matches the template reference.
9387

9488
1. This page lists the details of the storageAccount resource type. For example, it lists the allowed values for the **Sku** object. There are more skus than what is listed in the quickstart template that you opened earlier. You can customize the quickstart template to include all the available storage types.
9589

0 commit comments

Comments
 (0)