-
-
Notifications
You must be signed in to change notification settings - Fork 282
Description
Describe the bug
No matter my settings I get this:
"details": [
{
"code": "SubscriptionIsOverQuotaForSku",
"message": "Operation cannot be completed without additional quota. \r\nAdditional details - Location: \r\nCurrent Limit (Dynamic VMs): 0 \r\nCurrent Usage: 0\r\nAmount required for this deployment (Dynamic VMs): 1 \r\n(Minimum) New Limit that you should request to enable this deployment: 1. \r\nNote that if you experience multiple scaling operations failing (in addition to this one) and need to accommodate the aggregate quota requirements of these operations, you will need to request a higher quota limit than the one currently displayed."
}
To Reproduce
Steps to reproduce the behavior:
Launch via bicep like this:
import * as C from '../../params/constants.bicep'
var prefix = C.prefix
module acmebot 'br:cracmebotprod.azurecr.io/bicep/modules/keyvault-acmebot:v4' = {
params: {
appNamePrefix: 'perf-acme-le'
mailAddress: '[email protected]'
keyVaultBaseUrl: 'https://${prefix}-perf-kv.${environment().suffixes.keyvaultDns}/'
createWithKeyVault: false
keyVaultSkuName: 'standard'
// location: 'East US'
acmeEndpoint: 'https://acme-v02.api.letsencrypt.org/directory'
}
}
Or by clicking the deploy links.
Environment (please complete the following information):
Irrelevant. Can't launch the bot itself. haven't gotten to getting certificates.
Additional context
I assume I don't have the quota for whatever this is using, But I have tried asking for quota increase on everything I can. Dynamic VMs don't exist, and I can't find any relevant quotas.
Even Azure support is stumped. They keep asking me for the error saying they "can't see the above error".
If this is a simple "register resource provider" or finding the right quota to increase, that would be awesome. But, I have zero left I can find that might be relevant.
Thanks!