Microsoft Learn Azuire Pipelines

John Capazo Training 0 Reputation points
2024-04-30T15:47:37.5166667+00:00

I am following the exerices in the Deploy Azure resources by using Bicep and Azure Pipelines course. Due to the ongoing issue, I converted my subscription to pay-as-you-go. I'm trying to deploy a pipeline and still am encountering the "code":"SubscriptionIsOverQuotaForSku","message":"This region has quota of 0 instances for your subscription. Try selecting different region or SKU." error message. I tried different regions and different skus. I'm not familiar enough with Azure to figure this one out. Thank you for your assistance.

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
36,454 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Dan Rios 1,425 Reputation points MVP
    2024-04-30T18:42:44.89+00:00

    Hi John,

    try changing the location param from:

    param location string = resourceGroup().location

    to: (region is an example reference)

    param location string = ‘uksouth’

    Then try the deployment again? It’s possible the region is causing an issue but I’m not sure where your resource group is deployed to. Try with a different region like above just to test.

    let me know how you get on. If it works I’ll convert this to the answer so others can benefit.

    0 comments No comments