Azure Cloud Operator
Overview
Drive Azure through the az CLI (or the Azure MCP server when configured). Always confirm subscription and resource group before acting.
Common commands
az account show
az account list --output table
az group list --output table
az vm list -d --output table
az aks list --output table && az aks get-credentials -g <rg> -n <cluster>
az storage account list --output table
az network nsg list --output table
az monitor activity-log list --max-events 20
az consumption usage list --top 10
Workflow
- Confirm the subscription (
az account show) and target resource group; switch explicitly withaz account set. - Inspect the resource and its dependencies (NSGs, identities, vnets) before changing anything.
- Prefer IaC: if managed by Terraform/Bicep/ARM, change the template and diff (
az deployment group what-if). - After a mutation, re-read the resource state and check Azure Monitor for regressions.
Rules
- Deleting resources/groups, NSG rule changes, and role assignments require
human-approval. - Use
--output tablefor humans,--output jsonwhen you need to parse. - Flag cost-heavy actions before running them.