An Azure service that is used to provision Windows and Linux virtual machines.
Hello,
Thank you for reaching out regarding the availability of the D8as_v5 VM size during virtual machine creation.
Based on your query, this behavior is typically related to region availability, subscription quota limits, or restrictions on supported VM SKUs. Please review the following steps to identify and resolve the issue:
- Verify VM size availability in the selected region
Not all VM sizes are available in every Azure region.
- While creating the VM, try selecting a different region (e.g., East US, West Europe).
- Alternatively, check available sizes using Azure CLI:
az vm list-sizes --location <region>
If the D8as_v5 size is not listed, it indicates that the SKU is not supported in that region.
2.Check subscription quota limits
Even if the size is available, it may not be visible if the quota for that VM family is exhausted.
- Navigate to Azure Portal → Subscriptions → Usage + quotas
- Look for Dv5-series or Dasv5-series vCPUs usage.
If quota is insufficient, request an increase:
- Go to Help + Support → New support request → Quota
- Select the required region and VM family (Dasv5).
3.Validate subscription type restrictions
Certain subscription types (e.g., Free Trial, Student, or limited offers) may restrict access to specific VM SKUs.
- If applicable, try using another subscription (Pay-As-You-Go / Enterprise Agreement).
- Use CLI / PowerShell to list available VM SKUs
You can confirm availability with the below command:
az vm list-skus --location <region> --size Standard_D8as_v5 --all --output table
5.Check for capacity Crunch
In some scenarios, the size may be temporarily unavailable due to capacity limitations in the selected region.
- Retry in a different zone or region
- Try deploying without zone selection
Links:
https://learn.microsoft.com/en-us/azure/virtual-machines/sizes/overview?tabs=breakdownseries%2Cgeneralsizelist%2Ccomputesizelist%2Cmemorysizelist%2Cstoragesizelist%2Cgpusizelist%2Cfpgasizelist%2Chpcsizelist
https://learn.microsoft.com/en-us/azure/virtual-machines/sizes#vm-sizes
https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/azure-subscription-service-limits#virtual-machines
https://learn.microsoft.com/en-us/azure/azure-portal/supportability/per-vm-quota-requests
Thanks,
Manish.