azure:qnd:azure_cli

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
azure:qnd:azure_cli [2022/06/09 15:24] – [Bash] mguptonazure:qnd:azure_cli [2022/10/31 18:12] (current) – [Azure CLI] mgupton
Line 1: Line 1:
 ====== Azure CLI ====== ====== Azure CLI ======
 +Azure CLI and Powershell
 +
 +  * [[https://learn.microsoft.com/en-us/cli/azure/manage-azure-subscriptions-azure-cli]]
 +
 +<code powershell>
 +az login --tenant <tenant id>
 +</code>
 +
 +<code powershell>
 +az account set --subscription <subscription id>
 +</code>
 +
 +====== Powershell ======
 +===== Login Sequence =====
 +<code>
 +Connect-AzAccount
 +Get-AzSubscriptions
 +Set-AzContext
 +</code>
 +
 +=== Login (via GUI prompt) ===
 +<code powershell>
 +$AzCred = Get-Credential -UserName <username>
 +az login -u $AzCred.UserName -p $AzCred.GetNetworkCredential().Password
 +</code>
 +
 +=== Login from command line ===
 +<code powershell>
 +$key = “HKLM:\SOFTWARE\Microsoft\PowerShell\1\ShellIds”
 +Set-ItemProperty $key ConsolePrompting True
 +Get-Credential
 +Set-ItemProperty $key ConsolePrompting False
 +</code>
 +
 +=== Use native client with bastion ===
 +<code powershell>
 +az login
 +az account set --subscription <subscription id>
 +Start-Job -ScriptBlock {az network bastion rdp --name <bastion name> --resource-group <resource group name> --target-resource-id <resource id>}
 +</code>
 +
 +
 ====== Bash ====== ====== Bash ======
 === Login === === Login ===
 <code bash> <code bash>
-read -sp "Azure password: " AZ_PASS && echo && az login -u <username> -p $AZ_PASS+read -sp "Azure user: " AZ_USER && read -sp "Azure password: " AZ_PASS && echo && az login -u $AZ_USER -p $AZ_PASS
 </code> </code>
  
  
  
  • azure/qnd/azure_cli.1654788299.txt.gz
  • Last modified: 2022/06/09 15:24
  • by mgupton