Azure compute resources that are used to create and manage groups of heterogeneous load-balanced virtual machines.
Hello @Aizen Sousuke
It sounds like you’re hitting the classic “VM size not available in your region” hurdle when spinning up the CMG VM Scale Set. Here’s how you can troubleshoot and unblock yourself:
Identify the exact error type
- SkuNotAvailable: the chosen SKU isn’t offered in that region for your subscription
- QuotaLimit: you’ve hit a vCPU/core quota for that family/region
- AllocationFailure: regional capacity is exhausted at the moment
- QuotaLimit: you’ve hit a vCPU/core quota for that family/region
- Check SKU availability in your region
- Run in Azure CLI:
az vm list-skus --location <your-region> --size <Desired_VM_Size> --output table - Make sure the SKU you want shows up and is not marked “Restricted.”
- Verify and raise the correct quota
- If your preferred size still isn’t available, pick another supported size in the same region (e.g., switch from Standard_D1_v2 to Standard_D2s_v3 or F2s_v2) Or deploy your CMG to a different Azure region that has more capacity
- Double-check Azure Policy or subscription restrictions.
- Make sure you don’t have an Azure Policy blocking certain SKUs or regions.
- Ensure no spending or feature restrictions remain on your subscription after upgrading from trial
- If you’ve only raised the generic cores quota, also check the individual family quota—sometimes you need to bump both
- After the request is approved, wait a few minutes for it to propagate
- Try an alternative size or region
- Run in Azure CLI:
Follow-Up Questions (so we can narrow it down):
- Which Azure region are you targeting, and which VM size SKU did you try?
- What does
az vm list-skus --location <region> --size <sku>return? - Under “Usage + quotas,” do you see available vCPUs for that VM family?
- Any Azure Policies applied at the subscription or management-group level?
Note : This is an AI response.
Thanks,
Manish.