// assess

Show me your nines.

Two steps: get your inventory out of Azure, paste it here. We count what's honest to count.

01

Get the inventory

cloud-shell.sh read-only
az graph query --first 1000 -o json -q "
resources
| where type in~ (
    'microsoft.compute/virtualmachines',
    'microsoft.compute/virtualmachinescalesets',
    'microsoft.web/serverfarms',
    'microsoft.web/sites',
    'microsoft.dbforpostgresql/flexibleservers',
    'microsoft.dbformysql/flexibleservers',
    'microsoft.sql/servers/databases',
    'microsoft.sql/managedinstances',
    'microsoft.cache/redis',
    'microsoft.storage/storageaccounts',
    'microsoft.network/loadbalancers',
    'microsoft.network/applicationgateways',
    'microsoft.network/azurefirewalls',
    'microsoft.network/frontdoors',
    'microsoft.cdn/profiles',
    'microsoft.containerservice/managedclusters',
    'microsoft.documentdb/databaseaccounts',
    'microsoft.servicebus/namespaces',
    'microsoft.eventhub/namespaces',
    'microsoft.keyvault/vaults',
    'microsoft.apimanagement/service',
    'microsoft.app/containerapps',
    'microsoft.app/managedenvironments',
    'microsoft.app/jobs',
    'microsoft.app/agents',
    'microsoft.containerregistry/registries',
    'microsoft.search/searchservices',
    'microsoft.cognitiveservices/accounts',
    'microsoft.botservice/botservices',
    'microsoft.datafactory/factories',
    'microsoft.sql/servers',
    'microsoft.insights/metricalerts',
    'microsoft.insights/webtests',
    'microsoft.network/networkwatchers'
)
| project
    id,
    name,
    resourceGroup,
    type = tolower(type),
    location,
    zones,
    sku,
    kind,
    ha = properties.highAvailability.mode,
    zr = properties.zoneRedundant,
    tier = properties.sku.tier,
    replication = sku.name,
    capacity = sku.capacity
" > onlynines.json && download onlynines.json
Open Cloud Shell ↗

Paste, Enter — onlynines.json downloads itself. Drop the file below. Nothing to copy from the terminal.

02

Paste the output — JSON or CSV, we'll figure it out

waiting for input

🔒 Resource names are for your eyes — use the paranoid query to hash them at the source.