azure:azure_resource_graph_explorer

This is an old revision of the document!


Azure Resource Graph Explorer

Find all regions where resources are located.

resources | summarize resourceCount = count() by location | project location, resourceCount

Find all regions where VNets are located.

resources | where type == 'microsoft.network/virtualnetworks' | summarize count() by location | project location

Query for all the types resources in all regions.

Resources
| summarize by type, location
| order by type asc, location asc
  • azure/azure_resource_graph_explorer.1750104548.txt.gz
  • Last modified: 2025/06/16 20:09
  • by mmuze