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