Azure/CLI

From Wiki
< Azure
Revision as of 11:26, 16 May 2019 by Marcluer (talk | contribs)

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


  • Disk types
    • Premium_LRS, StandardSSD_LRS, Standard_LRS, UltraSSD_LRS