Hi David Cletus
You’re not doing anything wrong i think you can’t pick the B1 series is usually because it’s either not available in your region/zone or the subscription quota doesn’t allow that SKU. Azure doesn’t show sizes that aren’t supported in the selected region, so it’s not a bug, just a limitation
- Try deploying in a different region (e.g., East US, West Europe) where B1 is still supported.
- Check your subscription quotas under Help + Support → New Support Request → Quotas in the Azure portal.
- If you’re flexible, consider using Basv2 series they’re the newer burstable VMs and usually cheaper with better performance.
- Use the Azure CLI command
az vm list-sizes --location <region>to confirm which sizes are available in your target region.
If you run: az vm list-sizes --location "East US" --output table
You’ll see whether Standard_B1s or Standard_B1ms are listed. If not, you’ll need to pick Basv2 equivalents.
Try the steps above and you should be able to move forward. If this clears things up, please hit “Accept Answer” so I know it helped you out.