For system, network and cloud administrators

How to list available Azure virtual machine images using Azure CLI

For example, if you need to view all available virtual machine images published by Microsoft, you can use:

az vm image list --publisher Microsoft -o table

Let’s say you’ll want to check out virtual machine images created for Django. You can use:

az vm image list --sku django --all -o table

Or, you want to view available virtual machine images in a particular location, use the –location flag:

az vm image list --location westeurope -o table

Leave a Reply

Your email address will not be published. Required fields are marked *