Share via

Unable to create a VM of free size in any region

Srinivas Immanni 0 Reputation points
2025-12-03T09:50:52.7766667+00:00

I have created azure portal account for free trail. I am trying to launch VM of free size in every region but I am getting error like below

"This size is currently unavailable in eastus for this subscription: NotAvailableForSubscription."

I tried with many regions but no use. Anyone pls suggest on this

Azure Virtual Machines
Azure Virtual Machines

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


2 answers

Sort by: Most helpful
  1. Anonymous
    2025-12-03T13:56:34.5266667+00:00

    Hi Srinivas Immanni,

    The "NotAvailableForSubscription" error for free-tier VM sizes such as B1s in Azure free trials is due to high demand, limited regional capacity, and subscription quotas often set to zero cores in many locations. Free accounts have more restrictions than paid ones, so popular regions like East US are often unavailable.

    This can be frustrating, but there are a few things you can do to resolve this issue.

    1. Check subscription quotas
    • Go to Azure Portal > Subscriptions > Usage + quotas.
    • Look under Compute > Virtual Machines (cores) by region.
    • Verify if your free trial subscription has a zero or limited quota for the regions.
    • Request quota increase via Azure support if possible.

    2.Select alternate regions

    • Popular regions like East US often have capacity constraints for free tiers.
    • Try regions with typically better free tier availability like Australia East, Southeast Asia, Central US, or Canada Central.

    Use the Azure portal option "View all sizes" to see VM size availability by region

    3.Use Azure CLI or PowerShell for creation

    • Try creating the VM with a CLI command targeting a specific region and size:

    az vm create --resource-group myResourceGroup --name myVM --image Ubuntu2204 --size Standard_B1s --location australiaeast --admin-username azureuser --admin-password YourPassword123!

    4.Disable spending limits

    • Sometimes spending limits on free accounts prevent VM creation.
    • Check Cost Management + Billing for spend limit status and disable if necessary.

    Refer to Documenation:

    I hope the above helps. Please let us know if you have any further questions on this.

    Thank You!

    Was this answer helpful?

    1 person found this answer helpful.

  2. AI answer

    2025-12-03T09:51:02.0333333+00:00

    The error message "This size is currently unavailable in eastus for this subscription: NotAvailableForSubscription" indicates that the VM size you are trying to create is not available for your subscription in the specified region. Here are some steps you can take to resolve this issue:

    1. Choose a Different Region: Some VM sizes may not be available in certain regions for free trial subscriptions. Try selecting a different region where the desired VM size is available.
    2. Select an Available VM Size: You can check the available VM sizes for your subscription by going to the Azure portal, selecting Settings, and viewing the Azure types. Make sure to choose a VM size that is marked as available for your subscription.
    3. Check Subscription Limits: Free trial subscriptions may have limitations on the types of resources you can create. Ensure that the VM size you are trying to create is supported under your current subscription.
    4. Retry Later: If the VM size is temporarily unavailable due to high demand, you may want to wait and try again later.

    If these steps do not resolve the issue, consider reaching out to Azure support for further assistance.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

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.