Azure/CLI: Difference between revisions
< Azure
No edit summary |
No edit summary |
||
Line 20: | Line 20: | ||
az login | az login | ||
</pre> | </pre> | ||
== Snippets == | |||
* List available VM images | |||
<pre> | |||
az vm image list --output table | |||
</pre> | |||
* Disk types | |||
** Premium_LRS, StandardSSD_LRS, Standard_LRS, UltraSSD_LRS | |||
[[Category:Cloud/Azure]] | [[Category:Cloud/Azure]] |
Revision as of 11:26, 16 May 2019
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