|
|
|
|
|
by alexeldeib
1298 days ago
|
|
Ah, bummer. If it helps, you can try this to list out VM sizes with comparable capabilities and see if you have better luck with any others (--all not really necessary since it filters by NotAvailableForSubscription and similar): az vm list-skus -l germanynorth -r virtualMachines --all > germanynorth.json
jq '.[] | select( any( .capabilities[]; (.name == "vCPUs" and (.value | tonumber) >= 4 )) and any(.capabilities[]; (.name == "MemoryGB" and ( .value | tonumber ) >= 32) ) )' germanynorth.json
4/32 because that's what E4s_v4 would have. |
|