An Azure service that is used to provision Windows and Linux virtual machines.
Hello @Trevor Basta,
When you see NotAvailableForSubscription in every region for every size, it's not a capacity issue and it's not quotas in the normal sense. It means Microsoft's risk system has not enabled VM families for your Pay-As-You-Go subscription yet. It happens a lot with:
- Subscriptions < 14 days old
- First Pay-As-You-Go on a new Microsoft Account
- Credit card still in verification / $1 hold failed
- Previous Free Trial / Student upgraded to Pay-As-You-Go
You can register Microsoft.Compute and have 100% quota free and it will still block you.
The actual fix - Request quota for the FAMILY
Even if it shows 0% used, you need to request it to trigger enablement.
- Portal > Help + Support > Create a support request
- Issue Type:
Service and subscription limits (quotas) - Subscription: your Pay-As-You-Go
- Quota Type:
Compute - VM (cores-vCPUs) subscription limit increases - Click Next, then Enter details > Location: East US (or any) > Standard DSv3 Family vCPUs = 10, Standard D Family = 10, Standard BS Family = 10
- Submit
Try creating from CLI to bypass portal validation:
az vm create -g myRG -n testVM --image Ubuntu2204 --size Standard_B1s --location centralus
If this answers your query, do click Accept Answer and Up-Vote for the same. And, if you have any further query do let us know.