Home > Enterprise >  Unable to create Azure function app in West Germany region - This region has quota of 0 instances
Unable to create Azure function app in West Germany region - This region has quota of 0 instances

Time:01-20

I want to create an Azure function app in West Germany region, however that fails with:

This region has quota of 0 instances for your subscription. Try selecting different region or SKU. (Code: SubscriptionIsOverQuotaForSku)

enter image description here

I could create the Azure Function App in another region, but I want to understand why I am unable to create an Azure Function App in the West Germany region.

I already checked the quotas of my subscription, but there I can't find anything about Azure Functions: enter image description here

I also checked enter image description here

So, why can't I create an Azure Function App in the West Germany region?

CodePudding user response:

One of the reasons and resolutions could be followed as @skin suggested:

It may be that all resources allocated to AF’s in that region are exhausted. Try again tomorrow.

Even the Microsoft documentation shows quota available for the products by region, they have certain limits for the Subscription level in terms of Azure Compute Units allocation because the Hardware Configuration of the Function App is not specified.

enter image description here

You can visit this MS Doc1 & Doc2 for the ACUs Quota allocation per instance and Hosting Plan based.

And also, Same issue registered in Microsoft Q&A Forum #878011 where @MayankBargali-MSFT explained the cause of the error you mentioned regarding why quota is limited on the location and subscription level.

Also, you can mail to [email protected] by stating your business justification and details for quota increase request along with the Azure Subscription Id, Azure Resource Name and the Issue Time of occurrence in UTC.

  • Related