Tag not monitored by Microsoft.
Use the Azure CLI az vm create command and specify the region, size, and a Premium-capable SKU such as a DSv2-series VM. For East US (eastus) and a DSv2 size with Premium storage enabled, a basic example is:
az vm create \
--resource-group myResourceGroup \
--name myVM \
--location eastus \
--image Ubuntu2204 \
--size Standard_DS2_v2 \
--os-disk-type Premium_LRS \
--admin-username azureuser \
--generate-ssh-keys
Key points:
-
--location eastuscreates the VM in East US. -
--size Standard_DS2_v2selects a DSv2-series size that supports Premium disks. -
--os-disk-type Premium_LRSensures the OS disk uses Premium storage.
Adjust the resource group, VM name, image, and size as needed.
References: