Skip to content

Commit e387e14

Browse files
committed
updates
1 parent 99aa7a7 commit e387e14

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

articles/azure-resource-manager/management/tag-policies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Policies for tagging resources
33
description: Describes the Azure Policies that you can assign to ensure tag compliance.
44
ms.topic: conceptual
5-
ms.date: 03/18/2020
5+
ms.date: 03/20/2020
66
---
77

88
# Assign policies for tag compliance

articles/azure-resource-manager/management/tag-resources.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Tag resources, resource groups, and subscriptions for logical organization
33
description: Shows how to apply tags to organize Azure resources for billing and managing.
44
ms.topic: conceptual
5-
ms.date: 03/19/2020
5+
ms.date: 03/20/2020
66
---
7-
# Use tags to organize your Azure resources, resource groups and subscriptions
7+
# Use tags to organize your Azure resources, resource groups, and subscriptions
88

99
You apply tags to your Azure resources, resource groups, and subscriptions to logically organize them into a taxonomy. Each tag consists of a name and a value pair. For example, you can apply the name "Environment" and the value "Production" to all the resources in production.
1010

@@ -317,9 +317,9 @@ done
317317
IFS=$origIFS
318318
```
319319

320-
## ARM templates
320+
## Templates
321321

322-
You can tag resources, resource groups, and subscriptions during deployment with an ARM template.
322+
You can tag resources, resource groups, and subscriptions during deployment with a Resource Manager template.
323323

324324
### Apply values
325325

@@ -556,7 +556,12 @@ The following template adds the tags from an object to either a resource group o
556556

557557
## REST API
558558

559-
The Azure portal and PowerShell both use the [Resource Manager REST API](/rest/api/resources/) behind the scenes. If you need to integrate tagging into another environment, you can get tags by using **GET** on the resource ID and update the set of tags by using a **PATCH** call.
559+
To work with tags through the Azure REST API, use:
560+
561+
* [Tags - Create Or Update At Scope](/rest/api/resources/tags/createorupdateatscope) (PUT operation)
562+
* [Tags - Update At Scope](/rest/api/resources/tags/updateatscope) (PATCH operation)
563+
* [Tags - Get At Scope](/rest/api/resources/tags/getatscope) (GET operation)
564+
* [Tags - Delete At Scope](/rest/api/resources/tags/deleteatscope) (DELETE operation)
560565

561566
## Tags and billing
562567

@@ -571,7 +576,7 @@ For REST API operations, see [Azure Billing REST API Reference](/rest/api/billin
571576
The following limitations apply to tags:
572577

573578
* Not all resource types support tags. To determine if you can apply a tag to a resource type, see [Tag support for Azure resources](tag-support.md).
574-
* Each resource or resource group can have a maximum of 50 tag name/value pairs. If you need to apply more tags than the maximum allowed number, use a JSON string for the tag value. The JSON string can contain many values that are applied to a single tag name. A resource group can contain many resources that each have 50 tag name/value pairs.
579+
* Each resource, resource group, and subscription can have a maximum of 50 tag name/value pairs. If you need to apply more tags than the maximum allowed number, use a JSON string for the tag value. The JSON string can contain many values that are applied to a single tag name. A resource group or subscription can contain many resources that each have 50 tag name/value pairs.
575580
* The tag name is limited to 512 characters, and the tag value is limited to 256 characters. For storage accounts, the tag name is limited to 128 characters, and the tag value is limited to 256 characters.
576581
* Generalized VMs don't support tags.
577582
* Tags can't be applied to classic resources such as Cloud Services.

articles/azure-resource-manager/management/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
href: /azure/cloud-adoption-framework/decision-guides/resource-tagging/?toc=/azure/azure-resource-manager/management/toc.json
7171
- name: Tag resources
7272
href: tag-resources.md
73-
- name: Policies
73+
- name: Policies - compliance
7474
href: tag-policies.md
7575
- name: Tag support
7676
href: tag-support.md

0 commit comments

Comments
 (0)