2

I'm new to Azure and trying to run an out-of-the-box pipeline on Azure but it's failing on the deployment step of the pipeline. I get the error below. I am using the free trial tier of Azure.

I have a resource group in West Europe and I have the release step of the pipeline configured to West Europe. Is there some setting on I have completely missed?

2020-04-10T18:08:42.8286287Z ##[error]Unauthorized: { "Code": "Unauthorized", "Message": "This region has quota of 0 instances for your subscription. Try selecting different region or SKU.", "Target": null, "Details": [ { "Message": "This region has quota of 0 instances for your subscription. Try selecting different region or SKU." }, { "Code": "Unauthorized" },

irl_irl
  • 123
  • 5

1 Answers1

2

The error message tells you what the problem is:

This region has quota of 0 instances for your subscription. Try selecting different region or SKU

You do not have any quota for whatever it is you are trying to deploy. You will need to raise support request to have the quota increased in that region.

That said, if you do have quota, this could also be down to the current throttling of creating new resources in regions hit with high demand due to Covid-19. If that is the case you can try another region or wait.

Sam Cogan
  • 38,158
  • 6
  • 77
  • 113
  • Is it possible to see a region quota for a subscription? – irl_irl Apr 11 '20 at 14:43
  • Yes, if you go the subscriptions resource, and then select the subscription you want to look at. You should see a quota tab. You will then need to look for the resource type and region to see what you have allocated. – Sam Cogan Apr 11 '20 at 21:35
  • 1
    I can only see Storage Accounts in the quotas page. Does this mean i have 0 for everything else, or is Azure just turd? – Andrew Bullock May 01 '20 at 13:23
  • Is storage the only option in the "select a provider" drop down on the quota page? – Sam Cogan May 02 '20 at 08:59