An Azure service that is used to provision Windows and Linux virtual machines.
Hello @Ronnie Jensen
Thank you for reaching out regarding the challenges you’re facing with deploying new VMs and accessing quota information in the Azure portal. We understand how critical this is for your operations, and we’re here to help.
You are unable to deploy resources in Canadian regions due to insufficient quota errors. Additionally, the Quotas blade in the Azure portal is not loading, preventing you from viewing or requesting quota increases.
While we investigate the portal issue, please use the following CLI commands to check and manage quotas:
- Check Current Quotas and Usage
az vm list-usage --location "Canada Central" --output table
az vm list-usage --location "Canada East" --output table
- Retrieve Quota Details via REST API
az rest --method get --url "https://management.azure.com/subscriptions/<your-subscription-id>/providers/Microsoft.Compute/locations/canadacentral/usages?api-version=2023-07-01"
- Request Quota Increase via CLI
az support create --problem-class "Quota" --service-id "compute" --title "Increase VM quota in Canada regions" --description "Unable to deploy VMs due to insufficient quota and portal quota blade not loading"
- We are actively investigating the portal rendering issue.
- In the meantime, the above CLI commands will allow you to view and request quota increases without relying on the portal.