Im unable to create any virtual machines on Azure using a student subscription.

JIANG 20 Reputation points
2026-06-23T10:07:19.9766667+00:00

I checked my azure student subscription limit. its

"listOfAllowedLocations": {

    "value": [

      "polandcentral",

      "brazilsouth",

      "francecentral",

      "spaincentral",

      "austriaeast"

    ]

  }

but this five region is ALL NOT in student subscription

its a BUG or i cant use my student subscription?

Azure Virtual Machines
Azure Virtual Machines

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


Answer accepted by question author
Anonymous
2026-06-23T18:10:06.54+00:00

Hi Jiang,

Thank you for reaching out.

I understand that you are unable to create Virtual Machines using your Azure Student subscription and noticed that only the following regions are available under the listOfAllowedLocations policy:

This is not a bug. This behavior is expected for Azure for Students subscriptions. Microsoft applies subscription-level restrictions on available deployment regions for certain offers, including Azure for Students, to manage service availability and ensure a consistent experience.

The regions listed in your subscription are the locations currently enabled for resource deployment. You can use any of these allowed regions when creating your VM from the Azure Portal.

Please note that even within an allowed region, certain VM sizes may not be available due to capacity or SKU restrictions. You can check available VM sizes for a specific region using Azure CLI:

az vm list-skus \
  --location spaincentral \
  --size Standard_B \
  --output table

You can replace spaincentral with any of your allowed regions to verify availability.

If you require access to additional regions for a specific educational requirement, you can submit a support request through the Azure Portal by navigating to:

Azure Portal → Help + Support → Create a support request

Reference:

https://techcommunity.microsoft.com/discussions/microsoft-learn-for-educators/azure-for-students---locations-now-restricted-by-policy/4442469

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

0 additional answers

Sort by: Newest

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.