I've created a kusto query that will allow me to have an overview of all resourceGroups:
resourcecontainers
where type == 'microsoft.resources/subscriptions/resourcegroups'
project subscriptionId, resourceGroup, tags.mytag1, tags.mytag2, tags.mytag3
Is there a way I can project the subscriptionName
instead of the subscriptionId
?
the goal is to make it more human readable.