Unable to see Availability Set option when creating VM in Azure

Hitesh raut 40 Reputation points
2026-09-05T16:59:59.2966667+00:00

Hello

I’m trying to create a VM with an Availability Set. I have already created the Availability Set resource in the portal, but when I go to create a VM, under Availability options I only see

  1. Availability Zone
  2. No infrastructure redundancy required

The Availability Set option does not appear, even though I selected a region that (as per Microsoft documentation) does not support Availability Zones.

My questions are:

Why is the Availability Set option missing during VM creation?

Can you share a list of regions where Availability Sets are still supported?

Does the VM size or image type affect whether the Availability Set option is available?

Azure Virtual Machines
Azure Virtual Machines

An Azure service that is used to provision Windows and Linux virtual machines.

0 comments No comments

2 answers

Sort by: Most helpful
  1. SHOUMIK CHAKRAVARTY 575 Reputation points
    2026-09-05T20:55:06.6033333+00:00

    Why is the option missing?

    No documented rule for when the portal shows or hides it. But it's offering you Availability Zone, which suggests your region does have zones now. Microsoft has been adding them over time, so a list you read may predate that. Worth confirming which region is selected.

    For a single VM you pick either a zone or a set, so selecting a zone hides the set option.

    If no zone is selected and it's still missing, check whether the region supports aligned sets:

    az vm list-skus --resource-type availabilitySets \
      --query "[?name=='Aligned'].{Location:locationInfo[0].location, MaximumFaultDomainCount:capabilities[0].value}" \
      -o table
    

    Not in the output, that's your answer. In the output, it's the VM config.

    Which regions support Availability Sets?

    There isn't a list. They aren't region-gated the way zones are. The command above gives you the fault domain count per region, which is the thing that actually varies.

    Does VM size or image type affect it?

    Managed disks are required:

    Only VMs with managed disks can be created in a managed availability set.

    Past that nothing about size or image is documented, which is why the SKU check beats guessing.

    Also worth knowing

    You can't add an existing VM to a set, it's create-time only. And the portal hiding the option doesn't block you, since ARM, CLI and PowerShell all still take the availability set parameter.

    Help make this community better for everyone: if this answer resolved your issue, please accept it or leave an upvote. If not, share more details in a comment so we can continue the discussion and find the right solution

    Was this answer helpful?

    0 comments No comments

  2. Marcin Policht 106.8K Reputation points MVP Volunteer Moderator
    2026-09-05T20:42:32.5466667+00:00

    In short, this aligns with the recommended approach to providing redundancy within a single Azure datacenter that relies on VMSS in flexible orchestration mode (more at https://learn.microsoft.com/en-us/azure/virtual-machine-scale-sets/overview ). So, you might want to consider using VMSS in flexible orchestration mode instead.

    However this is purely a change in the UI. It does NOT mean that availability sets are not available or supported. The availability sets remain fully supported in all Azure regions.

    You can still access the previous interface by selecting "Click here to access the previous experience." in the notification that appears at the top of the Basic tab when creating a VM in the Azure portal. Just look for the wording:

    This is a preview of a new Create-VM experience. Features are limited in this experience and all feedback is appreciated. Click here to access the previous experience.
    

    Obviously you can also create/use availability sets via PowerShell, CLI, REST API, or templates.


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.