gin to azure using azure cli :

  1. Interactive UI ( Username + Password ) az login az login --use-device-code
  2. Service Principal ( App ID + Password or Certificate ) az login --service-principal --username AppID --tenant TenantID --password ClientSecret
  3. Managed Service Identity ( VM Identity [ System + User ] ) az login --identity
  4. Access Token ( Account ID + AccessToken ) Connect-AzAccount –AccessToken AccessToken Logout to azure using azure cli : az logout Stored Secrets Location : Folder - %USERPROFILE%\.azure (W) & $HOME/.Azure (L) File - accessTokens.json

Operations : Get the details about a default account az account show Get the details about a specified subscription Az account show --subscription SubscriptionID Get a list of active logged-in account az account list Set another logged-in account as a default account az account set --subscription SubscriptionID Get an access token to access azure api Az account get-access-token --subscription SubscriptionID Clear all active accounts from the CLI's local cache az account clear