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
@@ -57,18 +56,18 @@ To complete this article, you need:
57
56
* `contentVersion`: specify any value for this element to document significant changes in your template.
58
57
* `metadata`: specify the metadata of the template.
59
58
* `parameters`: specify the values that are provided when deployment is executed to customize resource deployment.
60
-
* `variables`: specify the values that are used as JSON fragments in the template to simplify template language expressions. Not shown in the screenshot.
59
+
* `variables`: specify the values that are used as JSON fragments in the template to simplify template language expressions. This template doesn't contain this element.
61
60
* `resources`: specify the resource types that are deployed or updated in a resource group.
62
61
* `outputs`: specify the values that are returned after deployment.
63
62
64
-
1. Expand `resources`. There's a `Microsoft.Storage/storageAccounts` resource defined. The API version is **2021-06-01**. The SKU name uses a parameter value. The parameter is called `storageAccountType`.
63
+
1. Expand `resources`. There's a `Microsoft.Storage/storageAccounts` resource defined. The API version shown on the screenshot is **2021-06-01**. The SKU name uses a parameter value. The parameter is called `storageAccountType`.
You like to find out whether you are using the latest API version, and whether he parameter definition includes all the allowed values.
70
+
Using the template reference, you can find out whether you are using the latest API version, and whether the parameter definition includes all the allowed values.
72
71
73
72
## Find the template reference
74
73
@@ -77,12 +76,14 @@ You like to find out whether you are using the latest API version, and whether h
1. A resource type usually has several API versions. This page shows the latest template schema version by default. Select the **Latest** dropdown box to see the versions. The latest version is **2021-06-01** when this article is written. Select either **Latest** or the version right beneath **Latest** to see the latest version. 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.
79
+
1. A resource type usually has several API versions. This page shows the latest template schema version by default. Select the **Latest** dropdown box to see the versions. The latest version shown on the screenshot is **2021-06-01**. Select either **Latest** or the version right beneath **Latest** to see the latest version. 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.
1. This page lists the details of the storageAccount resource type. For example, it lists the allowed values for the **Sku** object. There are eight SKUs, and they match the ones listed in the quickstart template that you opened earlier.
0 commit comments