Check/manage Azure quotas and usage across providers. For deployment planning, capacity validation, region selection. WHEN: "check quotas", "service limits", "current usage", "request quota increase", "quota exceeded", "validate capacity", "regional availability", "provisioning limits", "vCPU limit", "how many vCPUs available in my subscription".
78
72%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
Optimize this skill with Tessl
npx tessl skill review --optimize ./.github/skills/azure-quotas/SKILL.mdAUTHORITATIVE GUIDANCE — Follow these instructions exactly for quota management and capacity validation.
What are Azure Quotas?
Azure quotas (also called service limits) are the maximum number of resources you can deploy in a subscription. Quotas:
Key Concept: Quotas = Resource Availability
If you don't have quota, you cannot deploy resources. Always check quotas when planning deployments or selecting regions.
Invoke this skill when:
| Property | Details |
|---|---|
| Primary Tool | Azure CLI (az quota) - USE THIS FIRST, ALWAYS |
| Extension Required | az extension add --name quota (MUST install first) |
| Key Commands | az quota list, az quota show, az quota usage list, az quota usage show |
| Complete CLI Reference | commands.md |
| Azure Portal | My quotas - Use only as fallback |
| REST API | Microsoft.Quota provider - Unreliable, do NOT use first |
| Required Permission | Reader (view) or Quota Request Operator (manage) |
⚠️ CRITICAL: ALWAYS USE CLI FIRST
Azure CLI (
az quota) is the ONLY reliable method for checking quotas. Use CLI FIRST, always.DO NOT use REST API or Portal as your first approach. They are unreliable and misleading.
Why you must use CLI first:
- REST API is unreliable and shows misleading results
- REST API "No Limit" or "Unlimited" values DO NOT mean unlimited capacity
- "No Limit" typically means the resource doesn't support quota API (not unlimited!)
- CLI provides clear
BadRequesterrors when providers aren't supported- CLI has consistent output format and better error messages
- Portal may show incomplete or cached data
Mandatory workflow:
- FIRST: Try
az quota list/az quota show/az quota usage show- If CLI returns
BadRequest: Then use Azure service limits docs- Never start with REST API or Portal - only use as last resort
If you see "No Limit" in REST API/Portal: This is NOT unlimited capacity. It means:
- The quota API doesn't support that resource type, OR
- The quota isn't enforced via the API, OR
- Service-specific limits still apply (check documentation)
For complete CLI command reference and examples, see commands.md.
| Type | Adjustability | Approval | Examples |
|---|---|---|---|
| Adjustable | Can increase via Portal/CLI/API | Usually auto-approved | VM vCPUs, Public IPs, Storage accounts |
| Non-adjustable | Fixed limits | Cannot be changed | Subscription-wide hard limits |
Important: Requesting quota increases is free. You only pay for resources you actually use, not for quota allocation.
⚠️ CRITICAL: There is NO 1:1 mapping between ARM resource types and quota resource names. Never assume the quota resource name from the ARM type.
📋 Reference: Read references/resource-name-mapping.md for example mappings and the discovery workflow.
📋 Reference: Read references/core-workflows.md for 4 detailed workflows with full bash scripts:
📋 Reference: Read references/troubleshooting.md for common errors (ExtensionNotFound, BadRequest, QuotaExceeded, InvalidScope) and supported/unsupported resource providers.
| Resource | Link |
|---|---|
| CLI Commands Reference | commands.md - Complete syntax, parameters, examples |
| Azure Quotas Overview | Microsoft Learn |
| Service Limits Documentation | Azure subscription limits |
| Azure Portal - My Quotas | Portal Link |
| Request Quota Increases | How to request increases |
az quota list first - Discover correct quota resource names--output table for quick scanning┌─────────────────────────────────────────┐
│ 1. Install quota extension │
│ az extension add --name quota │
└─────────────────┬───────────────────────┘
│
▼
┌─────────────────────────────────────────┐
│ 2. Discover quota resource names │
│ az quota list --scope ... │
│ (Match by localizedValue) │
└─────────────────┬───────────────────────┘
│
▼
┌─────────────────────────────────────────┐
│ 3. Check current usage │
│ az quota usage show │
│ --resource-name <name> │
└─────────────────┬───────────────────────┘
│
▼
┌─────────────────────────────────────────┐
│ 4. Check quota limit │
│ az quota show │
│ --resource-name <name> │
└─────────────────┬───────────────────────┘
│
▼
┌─────────────────────────────────────────┐
│ 5. Validate capacity │
│ Available = Limit - (Usage + Need) │
└─────────────────┬───────────────────────┘
│
▼
┌────────┴────────┐
│ │
✅ Sufficient ❌ Insufficient
│ │
▼ ▼
Proceed Request increase
or change region"No Limit" or "Unlimited" but service-specific hard limits still apply. Usually means the resource doesn't support the quota API.az quota) is the ONLY reliable method. REST API shows incomplete/cached/misleading data.az quota list each time.az quota list first → if BadRequest → then use docs. Never start with REST API/Portal.Load these on demand — do NOT read all at once:
| Reference | When to Load |
|---|---|
references/advanced-commands.md | Advanced Commands |
references/commands.md | Commands |
references/core-workflows.md | Detailed quota check, compare, increase, and list workflows |
references/troubleshooting.md | Common errors and unsupported providers |
references/resource-name-mapping.md | ARM-to-quota resource name mapping and discovery |
ec7b8ff
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.