Azure/CLI
< Azure
Installation of Azure CLI under Linux
sudo apt-get update sudo apt-get install curl apt-transport-https lsb-release gpg curl -sL https://packages.microsoft.com/keys/microsoft.asc | \ gpg --dearmor | \ sudo tee /etc/apt/trusted.gpg.d/microsoft.asc.gpg > /dev/null AZ_REPO=$(lsb_release -cs) echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $AZ_REPO main" | \ sudo tee /etc/apt/sources.list.d/azure-cli.list sudo apt-get update sudo apt-get install azure-cli
- testing
az login
Snippets
- List available VM images
az vm image list --output table
- List available SKUs
az vm image list-skus -l northurope -f Ubuntu
- Disk types
Premium_LRS, StandardSSD_LRS, Standard_LRS, UltraSSD_LRS