You can use Azure CLI
az vm list-sizes --location <region> --output table
or Azure PowerShell
Get-AzVMSize -Location <region>
Alternatively, you can check the "Products by Region" page in the Azure documentation to get an overview of what SKUs are available in which region:
- Visit Azure Products by Region.
- Select the product (e.g., Virtual Machines) and region to see availability.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin