How to check in which zones in a region VM size is available?

Dominik Mańkowski 25 Reputation points
2023-09-15T12:15:48.6566667+00:00

I would like to check in which zone(s) in West Europe VMs from HBv4 series are available. My standard approach, via Azure CLI:

az vm list-skus --location westeurope --all true --resource-type virtualMachines --output table

does not show anything regarding HBv4:

❯ az vm list-skus --location westeurope --all true --resource-type virtualMachines --output table | grep -e Zones -e HB
ResourceType     Locations    Name                       Zones    Restrictions
virtualMachines  westeurope   Standard_HB120-16rs_v2     1,3      None
virtualMachines  westeurope   Standard_HB120-16rs_v3     3        None
virtualMachines  westeurope   Standard_HB120-32rs_v2     1,3      None
virtualMachines  westeurope   Standard_HB120-32rs_v3     3        None
virtualMachines  westeurope   Standard_HB120-64rs_v2     1,3      None
virtualMachines  westeurope   Standard_HB120-64rs_v3     3        None
virtualMachines  westeurope   Standard_HB120-96rs_v2     1,3      None
virtualMachines  westeurope   Standard_HB120-96rs_v3     3        None
virtualMachines  westeurope   Standard_HB120rs_v2        1,3      None
virtualMachines  westeurope   Standard_HB120rs_v3        3        None
virtualMachines  westeurope   Standard_HB60-15rs         3        None
virtualMachines  westeurope   Standard_HB60-30rs         3        None
virtualMachines  westeurope   Standard_HB60-45rs         3        None
virtualMachines  westeurope   Standard_HB60rs            3        None

Most likely due to the fact that this series is in high demand and I need to request a quota to even deploy a single VM of this type. I also cannot find this information in the documentation or on any website. Could you point me to the right source of such data?

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
7,550 questions
0 comments No comments
{count} votes

Accepted answer
  1. kobulloc-MSFT 26,131 Reputation points Microsoft Employee
    2023-09-15T17:58:34.23+00:00

    Hello, @Dominik Mańkowski !

    How to check in which zones in a region VM size is available?

    Using the az command you listed is the correct approach for determining if a SKU is available in a region. The issue you are running into here is that the HBv4-series was just released in June of 2023 and when we check the Azure products by region page, we see that it is not yet available in West Europe:

    https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/

    User's image

    You would need to deploy either in East US for the time being or use an HBv3-series VM in West Europe.

    I hope this saves a bit of time in searching and thank you for your interest in the HBv4-series. Hopefully it will be available locally in the near future.


    Your feedback is important so please take a moment to accept answers.

    If you still have questions, please let us know what is needed in the comments so the question can be answered. Thank you for helping to improve Microsoft Q&A!

    User's image

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful