Skip to content

Commit 4993119

Browse files
authored
Merge pull request #96918 from tfitzmac/1122headers
shorten headers
2 parents ef89af2 + daaef8a commit 4993119

8 files changed

+25
-25
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ We recommend that you complete the [tutorial about parameters](template-tutorial
1717

1818
You must have Visual Studio Code with the Resource Manager Tools extension, and either Azure PowerShell or Azure CLI. For more information, see [template tools](template-tutorial-create-first-template.md#get-tools).
1919

20-
## Review your template
20+
## Review template
2121

2222
At the end of the previous tutorial, your template had the following JSON:
2323

@@ -65,7 +65,7 @@ az group deployment create \
6565

6666
---
6767

68-
## Verify the deployment
68+
## Verify deployment
6969

7070
You can verify the deployment by exploring the resource group from the Azure portal.
7171

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ We recommend that you complete the [tutorial about variables](template-tutorial-
1717

1818
You must have Visual Studio Code with the Resource Manager Tools extension, and either Azure PowerShell or Azure CLI. For more information, see [template tools](template-tutorial-create-first-template.md#get-tools).
1919

20-
## Review your template
20+
## Review template
2121

2222
At the end of the previous tutorial, your template had the following JSON:
2323

@@ -41,7 +41,7 @@ It uses the [reference](resource-group-template-functions-resource.md#reference)
4141

4242
Finally, it returns the **primaryEndpoints** property from the storage account
4343

44-
## Deploy the template
44+
## Deploy template
4545

4646
You're ready to deploy the template and look at the returned value.
4747

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ We recommend that you complete the [tutorial about resources](template-tutorial-
1717

1818
You must have Visual Studio Code with the Resource Manager Tools extension, and either Azure PowerShell or Azure CLI. For more information, see [template tools](template-tutorial-create-first-template.md#get-tools).
1919

20-
## Review your template
20+
## Review template
2121

2222
At the end of the previous tutorial, your template had the following JSON:
2323

2424
[!code-json[](~/resourcemanager-templates/get-started-with-templates/add-storage/azuredeploy.json)]
2525

2626
You may have noticed that there's a problem with this template. The storage account name is hard-coded. You can only use this template to deploy the same storage account every time. To deploy a storage account with a different name, you would have to create a new template, which obviously isn't a practical way to automate your deployments.
2727

28-
## Make your template reusable
28+
## Make template reusable
2929

3030
To make your template reusable, let's add a parameter that you can use to pass in a storage account name. The highlighted JSON in the following example shows what changed in your template. The **storageName** parameter is identified as a string. The max length is set to 24 characters to prevent any names that are too long.
3131

3232
Copy the whole file and replace your template with its contents.
3333

3434
[!code-json[](~/resourcemanager-templates/get-started-with-templates/add-name/azuredeploy.json?range=1-26&highlight=4-10,15)]
3535

36-
## Deploy the template
36+
## Deploy template
3737

3838
Let's deploy the template. The following example deploys the template with Azure CLI or PowerShell. Notice that you provide the storage account name as one of the values in the deployment command. For the storage account name, provide the same name you used in the previous tutorial.
3939

@@ -79,7 +79,7 @@ The previous template always deployed a Standard_LRS storage account. You might
7979

8080
The **storageSKU** parameter has a default value. This value is used when a value isn't specified during the deployment. It also has a list of allowed values. These values match the values that are needed to create a storage account. You don't want users of your template to pass in SKUs that don't work.
8181

82-
## Redeploy the template
82+
## Redeploy template
8383

8484
You're ready to deploy again. Because the default SKU is set to **Standard_LRS**, you don't need to provide a value for that parameter.
8585

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ We recommend that you complete the [tutorial about Quickstart templates](templat
1717

1818
You must have Visual Studio Code with the Resource Manager Tools extension, and either Azure PowerShell or Azure CLI. For more information, see [template tools](template-tutorial-create-first-template.md#get-tools).
1919

20-
## Review your template
20+
## Review template
2121

2222
Your previous template deployed a storage account, App Service plan, and web app.
2323

@@ -33,7 +33,7 @@ The following example highlights the changes to the template. Copy the whole fil
3333

3434
[!code-json[](~/resourcemanager-templates/get-started-with-templates/add-tags/azuredeploy.json?range=1-118&highlight=46-52,64,78,100)]
3535

36-
## Deploy the template
36+
## Deploy template
3737

3838
It's time to deploy the template and look at the results.
3939

@@ -63,7 +63,7 @@ az group deployment create \
6363

6464
---
6565

66-
## Verify the deployment
66+
## Verify deployment
6767

6868
You can verify the deployment by exploring the resource group from the Azure portal.
6969

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ We recommend that you complete the [tutorial about functions](template-tutorial-
1717

1818
You must have Visual Studio Code with the Resource Manager Tools extension, and either Azure PowerShell or Azure CLI. For more information, see [template tools](template-tutorial-create-first-template.md#get-tools).
1919

20-
## Review your template
20+
## Review template
2121

2222
At the end of the previous tutorial, your template had the following JSON:
2323

@@ -45,7 +45,7 @@ The **storagePrefix** parameter enables you to pass in a prefix that helps you i
4545

4646
Finally, notice that the storage name is now set to the variable instead of a parameter.
4747

48-
## Deploy the template
48+
## Deploy template
4949

5050
Let's deploy the template. Deploying this template is easier than the previous templates because you provide just the prefix for the storage name.
5151

@@ -74,7 +74,7 @@ az group deployment create \
7474

7575
---
7676

77-
## Verify the deployment
77+
## Verify deployment
7878

7979
You can verify the deployment by exploring the resource group from the Azure portal.
8080

articles/azure-resource-manager/template-tutorial-export-template.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ We recommend that you complete the [tutorial about outputs](template-tutorial-ad
1717

1818
You must have Visual Studio Code with the Resource Manager Tools extension, and either Azure PowerShell or Azure CLI. For more information, see [template tools](template-tutorial-create-first-template.md#get-tools).
1919

20-
## Review your template
20+
## Review template
2121

2222
At the end of the previous tutorial, your template had the following JSON:
2323

@@ -44,7 +44,7 @@ This template works well for deploying storage accounts, but you might want to a
4444
1. Select **Review and create**.
4545
1. Select **Create**. It takes a few moments to create the resource.
4646

47-
## Export the template
47+
## Export template
4848

4949
1. Select **Go to resource**.
5050

@@ -63,7 +63,7 @@ This template works well for deploying storage accounts, but you might want to a
6363
> [!IMPORTANT]
6464
> Typically, the exported template is more verbose than you might want when creating a template. For example, the SKU object in the exported template has five properties. This template works, but you could just use the **name** property. You can start with the exported template, and then modify it as you like to fit your requirements.
6565
66-
## Revise the existing template
66+
## Revise existing template
6767

6868
The exported template gives you most of the JSON you need, but you need to customize it for your template. Pay particular attention to differences in parameters and variables between your template and the exported template. Obviously, the export process doesn't know the parameters and variables that you've already defined in your template.
6969

@@ -73,7 +73,7 @@ Copy the whole file and replace your template with its contents.
7373

7474
[!code-json[](~/resourcemanager-templates/get-started-with-templates/export-template/azuredeploy.json?range=1-77&highlight=28-31,50-69)]
7575

76-
## Deploy the template
76+
## Deploy template
7777

7878
Use either Azure CLI or Azure PowerShell to deploy a template.
7979

articles/azure-resource-manager/template-tutorial-quickstart-template.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ We recommend that you complete the [tutorial about exported templates](template-
1717

1818
You must have Visual Studio Code with the Resource Manager Tools extension, and either Azure PowerShell or Azure CLI. For more information, see [template tools](template-tutorial-create-first-template.md#get-tools).
1919

20-
## Review your template
20+
## Review template
2121

2222
At the end of the previous tutorial, your template had the following JSON:
2323

2424
[!code-json[](~/resourcemanager-templates/get-started-with-templates/export-template/azuredeploy.json)]
2525

2626
This template works for deploying storage accounts and app service plans, but you might want to add a website to it. You can use pre-built templates to quickly discover the JSON required for deploying a resource.
2727

28-
## Find a template
28+
## Find template
2929

3030
1. Open [Azure Quickstart templates](https://azure.microsoft.com/resources/templates/)
3131
1. In **Search**, enter **deploy linux web app**.
@@ -36,7 +36,7 @@ This template works for deploying storage accounts and app service plans, but yo
3636

3737
![Resource Manager template quickstart web site](./media/template-tutorial-quickstart-template/resource-manager-template-quickstart-template-web-site.png)
3838

39-
## Revise the existing template
39+
## Revise existing template
4040

4141
Merge the quickstart template with the existing template:
4242

@@ -52,7 +52,7 @@ You'll notice it has an element named **dependsOn** that is set to the app servi
5252

5353
The **serverFarmId** property uses the [resourceId](resource-group-template-functions-resource.md#resourceid) function. This function gets the unique identifier for a resource. In this case, it gets the unique identifier for the app service plan. The web app is associated with one specific app service plan.
5454

55-
## Deploy the template
55+
## Deploy template
5656

5757
Use either Azure CLI or Azure PowerShell to deploy a template.
5858

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ We recommend that you complete the [tutorial about tags](template-tutorial-add-t
1717

1818
You must have Visual Studio Code with the Resource Manager Tools extension, and either Azure PowerShell or Azure CLI. For more information, see [template tools](template-tutorial-create-first-template.md#get-tools).
1919

20-
## Review your template
20+
## Review template
2121

2222
Your template has many parameters you can provide during deployment. At the end of the previous tutorial, your template looked like:
2323

@@ -41,7 +41,7 @@ Again, create a new file with the following content. Save the file with the name
4141

4242
This file is your parameter file for the production environment. Notice that it uses Standard_GRS for the storage account, names resources with a **contoso** prefix, and sets the **Environment** tag to **Production**. In a real production environment, you would also want to use an app service with a SKU other than free, but we'll continue to use that SKU for this tutorial.
4343

44-
## Deploy the template
44+
## Deploy template
4545

4646
Use either Azure CLI or Azure PowerShell to deploy the template.
4747

@@ -111,7 +111,7 @@ az group deployment create \
111111

112112
---
113113

114-
## Verify the deployment
114+
## Verify deployment
115115

116116
You can verify the deployment by exploring the resource groups from the Azure portal.
117117

0 commit comments

Comments
 (0)