TAGS
Tags on resource group​
ResourceContainers
| where type == "microsoft.resources/subscriptions/resourcegroups"
| join kind=inner(
ResourceContainers
| where type =~ 'microsoft.resources/subscriptions'
| project id, subscriptionId, subName=name , type)
on subscriptionId
| project subId=subscriptionId, subName, resourceGroup, AZname=name, tags
| order by subId, resourceGroup, AZname
Tags on virtual machines​
Resources
| where type == "microsoft.compute/virtualmachines"
| join kind=inner(
ResourceContainers
| where type =~ 'microsoft.resources/subscriptions'
| project id, subscriptionId, subName=name , type)
on subscriptionId
| project subId=subscriptionId, subName, resourceGroup, AZname=name, tags
| order by subId, resourceGroup, AZname