Unable to Create Azure OpenAI Resource due to Region Policy Conflict on Student Subscription

Zhidan Fu 5 Reputation points
2025-08-28T11:54:07.2166667+00:00

I am currently using an Azure for Students subscription and I am trying to create an Azure OpenAI resource. However, the deployment fails with the following policy error:
Resource 'o*****' was disallowed by Azure: This policy maintains a set of best available regions where your subscription can deploy resources. The objective of this policy is to ensure that your subscription has full access to Azure services with optimal performance. Should you need additional or different regions, contact support..

(Code: RequestDisallowedByAzure, Target: o****)

Following the guidance for this issue, I have investigated my Azure Policy assignments. I found a policy named "Allowed resource deployment regions" which restricts my deployments to the following five regions:

chilecentral

indonesiacentral

malaysiawest

newzealandnorth

eastasia

The core issue is that none of these five allowed regions are available in the region selection dropdown when I try to create the Azure OpenAI service. The list of available regions for OpenAI (such as East US, West Europe, etc.) does not overlap with my permitted regions.

As a user on a student subscription, I do not have the permissions to modify this policy assignment myself.
What should I do?

Foundry Tools
Foundry Tools

Formerly known as Azure AI Services or Azure Cognitive Services is a unified collection of prebuilt AI capabilities within the Microsoft Foundry platform


3 answers

Sort by: Most helpful
  1. Tayyab Tahir 25 Reputation points
    2025-09-08T17:34:51.6133333+00:00

    Query to get allowed locations:

    az policy assignment list \

    --subscription YourSubscriptionIdHerer \

    --query "[?parameters.listOfAllowedLocations.value!=null].parameters.listOfAllowedLocations.value[]" \

    -o tsv

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

  2. Tayyab Tahir 25 Reputation points
    2025-09-08T17:29:25.8133333+00:00

    For student subscription list of Allowed Locations ": norwayeast", "polandcentral", "spaincentral", "switzerlandnorth"

    Was this answer helpful?

    0 comments No comments

  3. Zhidan Fu 5 Reputation points
    2025-08-29T10:04:42.6066667+00:00

    Thanks a lot Bharath. I'll follow your instruction.

    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.