Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Execute Azure deployments using azd, Terraform, or Bicep with built-in error recovery.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/recipes/azcli/errors.md
1# Azure CLI Errors23| Error | Resolution |4|-------|------------|5| Not authenticated | `az login` |6| Subscription not found | `az account list` |7| Deployment failed | `az deployment sub show --name <name>` |8| Template error | `az deployment sub validate` |9| Permission denied | Verify RBAC roles |10| Quota exceeded | Request increase or change region |1112## Cleanup (DESTRUCTIVE)1314```bash15az group delete --name <rg-name> --yes16```1718⚠️ Permanently deletes ALL resources in the group.19