Skip to content

Commit 5213438

Browse files
committed
update the file naming
1 parent e5d97e5 commit 5213438

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/azure-resource-manager/templates/quickstart-create-template-specs.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ An Azure account with an active subscription. [Create an account for free](https
2323
2424
## Create template
2525

26-
You create a template spec from an ARM template. Copy the following template and save as **C:\Templates\createStorage.json**.
26+
You create a template spec from an ARM template. Copy the following template and save as **C:\Templates\createStorageV1.json**.
2727

2828
```json
2929
{
@@ -79,7 +79,7 @@ The template spec is a resource type named `Microsoft.Resources/templateSpecs`.
7979
-Version "1.0" `
8080
-ResourceGroupName templateSpecRG `
8181
-Location westus2 `
82-
-TemplateFile "C:\Templates\createStorage.json"
82+
-TemplateFile "C:\Templates\createStorageV1.json"
8383
```
8484
8585
# [CLI](#tab/azure-cli)
@@ -100,7 +100,7 @@ The template spec is a resource type named `Microsoft.Resources/templateSpecs`.
100100
--version "1.0" \
101101
--resource-group templateSpecRG \
102102
--location "westus2" \
103-
--template-file "C:\Templates\createStorage.json"
103+
--template-file "C:\Templates\createStorageV1.json"
104104
```
105105
106106
# [Portal](#tab/azure-portal)
@@ -110,7 +110,7 @@ The template spec is a resource type named `Microsoft.Resources/templateSpecs`.
110110
111111
:::image type="content" source="./media/quickstart-create-template-specs/search-template-spec.png" alt-text="Screenshot of search bar with 'template specs' query.":::
112112
113-
1. Select **Import template**, and then follow the instructions to import **C:\Templates\createStorage.json** that you saved earlier.
113+
1. Select **Import template**, and then follow the instructions to import **C:\Templates\createStorageV1.json** that you saved earlier.
114114
115115
1. Provide the following values:
116116
@@ -374,7 +374,7 @@ To let other users in your organization deploy your template spec, grant them re
374374
375375
## Update template
376376
377-
To make a change to the template in your template spec, revise the template. The following template is similar to your earlier template except it adds a prefix for the storage account name. Copy the following template and update your `createStorage.json` file.
377+
To make a change to the template in your template spec, revise the template. The following template is similar to your earlier template except it adds a prefix for the storage account name. Copy the following template and save it as **createStorageV2.json** file.
378378
379379
```json
380380
{
@@ -422,7 +422,7 @@ Instead of creating a new template spec for the revised template, add a new vers
422422
-Version "2.0" `
423423
-ResourceGroupName templateSpecRG `
424424
-Location westus2 `
425-
-TemplateFile "C:\Templates\createStorage.json"
425+
-TemplateFile "C:\Templates\createStorageV2.json"
426426
```
427427

428428
1. To deploy the new version, get the resource ID for the `2.0` version.
@@ -450,7 +450,7 @@ Instead of creating a new template spec for the revised template, add a new vers
450450
--version "2.0" \
451451
--resource-group templateSpecRG \
452452
--location "westus2" \
453-
--template-file "C:\Templates\createStorage.json"
453+
--template-file "C:\Templates\createStorageV2.json"
454454
```
455455

456456
1. To deploy the new version, get the resource ID for the `2.0` version.

0 commit comments

Comments
 (0)