Hi ,
Thanks for reaching out to Microsoft Q&A.
Option 1: Change the VM SKU
If you want to keep the region as East US, you need to pick a different VM size that is available in that region. Steps:
- Run this command to see which sizes are available: Get-AzVMSize -Location eastus
Pick a similar size, such as Standard_B2s or Standard_DS2_v2, and update the CoreServicesVMazuredeploy.parameters.json file to use the new size.
Option 2: Change the Region
If you want to keep the same SKU (Standard_DS1_v2), deploy to another region where the SKU is available. Steps:
- Check available regions for the SKU: az vm list-skus --size Standard_DS1_v2 --location eastus --output table (OR) az vm list-skus --size Standard_DS1_v2 --output table
Update your deployment command and template parameters to use a region like eastus2, centralus, or westus.
For the lab, the simplest solution is to switch the region to eastus2 or centralus in your parameters file and re-run the deployment.
Please 'Upvote'(Thumbs-up) and 'Accept' as answer if the reply was helpful. This will be benefitting other community members who face the same issue.