mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-14 09:48:26 +00:00
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# az login
|
|
|
|
> Log in to Azure.
|
|
> Part of `azure-cli` (also known as `az`).
|
|
> More information: <https://learn.microsoft.com/cli/azure/reference-index#az-login>.
|
|
|
|
- Log in interactively:
|
|
|
|
`az login`
|
|
|
|
- Log in with a service principal using a client secret:
|
|
|
|
`az login --service-principal {{[-u|--username]}} {{http://azure-cli-service-principal}} {{[-p|--password]}} {{secret}} {{[-t|--tenant]}} {{someone.onmicrosoft.com}}`
|
|
|
|
- Log in with a service principal using a client certificate:
|
|
|
|
`az login --service-principal {{[-u|--username]}} {{http://azure-cli-service-principal}} {{[-p|--password]}} {{path/to/cert.pem}} {{[-t|--tenant]}} {{someone.onmicrosoft.com}}`
|
|
|
|
- Log in using a VM's system assigned identity:
|
|
|
|
`az login {{[-i|--identity]}}`
|
|
|
|
- Log in using a VM's user assigned identity:
|
|
|
|
`az login {{[-i|--identity]}} {{[-u|--username]}} /subscriptions/{{subscription_id}}/resourcegroups/{{my_rg}}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{{my_id}}`
|