Skip to content

Commit f5a4f0d

Browse files
Merge pull request #208736 from sheisanchez/0822-add-tags
first round of edits for add arm template tags
2 parents b00a08d + ddf310e commit f5a4f0d

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,33 @@
22
title: Tutorial - add tags to resources in template
33
description: Add tags to resources that you deploy in your Azure Resource Manager template (ARM template). Tags let you logically organize resources.
44
author: mumian
5-
ms.date: 03/27/2020
5+
ms.date: 08/22/2022
66
ms.topic: tutorial
77
ms.author: jgao
88
ms.custom:
99
---
1010

1111
# Tutorial: Add tags in your ARM template
1212

13-
In this tutorial, you learn how to add tags to resources in your Azure Resource Manager template (ARM template). [Tags](../management/tag-resources.md) help you logically organize your resources. The tag values show up in cost reports. This tutorial takes **8 minutes** to complete.
13+
In this tutorial, you learn how to add tags to resources in your Azure Resource Manager template (ARM template). [Tags](../management/tag-resources.md) are metadata elements made up of key-value pairs that help you identify resources and show up in cost reports. This instruction takes **8 minutes** to complete.
1414

1515
## Prerequisites
1616

17-
We recommend that you complete the [tutorial about Quickstart templates](template-tutorial-quickstart-template.md), but it's not required.
17+
We recommend that you complete the [tutorial about Quickstart Templates](template-tutorial-quickstart-template.md), but it's not required.
1818

19-
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).
19+
You need to have Visual Studio Code with the Resource Manager Tools extension and either Azure PowerShell or Azure Command-Line Interface (CLI). For more information, see [template tools](template-tutorial-create-first-template.md#get-tools).
2020

2121
## Review template
2222

23-
Your previous template deployed a storage account, App Service plan, and web app.
23+
Your previous template deployed a storage account, an App Service plan, and a web app.
2424

2525
:::code language="json" source="~/resourcemanager-templates/get-started-with-templates/quickstart-template/azuredeploy.json":::
2626

27-
After deploying these resources, you might need to track costs and find resources that belong to a category. You can add tags to help solve these issues.
27+
After you deploy these resources, you might need to track costs and find resources that belong to a category. You can add tags to help solve these issues.
2828

2929
## Add tags
3030

31-
You tag resources to add values that help you identify their use. For example, you can add tags that list the environment and the project. You could add tags that identify a cost center or the team that owns the resource. Add any values that make sense for your organization.
31+
You tag resources to add values that help you identify their use. You can add tags that list the environment and the project. You can also add them to identify a cost center or the team that owns the resource. Add any values that make sense for your organization.
3232

3333
The following example highlights the changes to the template. Copy the whole file and replace your template with its contents.
3434

@@ -54,7 +54,7 @@ New-AzResourceGroupDeployment `
5454

5555
# [Azure CLI](#tab/azure-cli)
5656

57-
To run this deployment command, you must have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
57+
To run this deployment command, you need to have the [latest version](/cli/azure/install-azure-cli) of Azure CLI.
5858

5959
```azurecli
6060
az deployment group create \
@@ -67,7 +67,7 @@ az deployment group create \
6767
---
6868

6969
> [!NOTE]
70-
> If the deployment failed, use the `verbose` switch to get information about the resources being created. Use the `debug` switch to get more information for debugging.
70+
> If the deployment fails, use the `verbose` switch to get information about the resources you're creating. Use the `debug` switch to get more information for debugging.
7171
7272
## Verify deployment
7373

@@ -84,16 +84,16 @@ You can verify the deployment by exploring the resource group from the Azure por
8484

8585
If you're moving on to the next tutorial, you don't need to delete the resource group.
8686

87-
If you're stopping now, you might want to clean up the resources you deployed by deleting the resource group.
87+
If you're stopping now, you might want to delete the resource group.
8888

89-
1. From the Azure portal, select **Resource group** from the left menu.
90-
2. Enter the resource group name in the **Filter by name** field.
91-
3. Select the resource group name.
89+
1. From the Azure portal, select **Resource groups** from the left menu.
90+
2. Type the resource group name in the **Filter for any field...** text field.
91+
3. Check the box next to **myResourceGroup** and select **myResourceGroup** or your resource group name.
9292
4. Select **Delete resource group** from the top menu.
9393

9494
## Next steps
9595

96-
In this tutorial, you added tags to the resources. In the next tutorial, you'll learn how to use parameter files to simplify passing in values to the template.
96+
In this tutorial, you add tags to the resources. In the next tutorial, you learn how to use parameter files to simplify passing in values to the template.
9797

9898
> [!div class="nextstepaction"]
9999
> [Use parameter file](template-tutorial-use-parameter-file.md)

0 commit comments

Comments
 (0)