Azure CLI: Difference between revisions
Jump to navigation
Jump to search
(→Login) |
(→Login) |
||
Line 13: | Line 13: | ||
<syntaxhighlight lang='bash'> | <syntaxhighlight lang='bash'> | ||
az login | az login | ||
</syntaxhighlight> | |||
The command starts a browser for authentication, and if the login is successful, shows something similar to: | |||
<syntaxhighlight lang='text'> | |||
The default web browser has been opened at https://login.microsoftonline.com/common/oauth2/authorize. Please continue the login in the web browser. If no web browser is available or if the web browser fails to open, use device code flow with `az login --use-device-code`. | |||
You have logged in. Now let us find all the subscriptions to which you have access... | |||
[ | |||
{ | |||
"cloudName": "AzureCloud", | |||
"homeTenantId": "55555555-9999-4444-bbbb-aaaaaaaaaaaa", | |||
"id": "99999999-9999-9999-9999-999999999999", | |||
"isDefault": true, | |||
"managedByTenants": [], | |||
"name": "example.example.az(Converted to EA)", | |||
"state": "Enabled", | |||
"tenantId": "53ad779a-93e7-485c-ba20-ac8290d7252b", | |||
"tenantId": <same-as-homeTenantId>, | |||
"user": { | |||
"name": "some.user@example.com", | |||
"type": "user" | |||
} | |||
} | |||
] | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 19:36, 18 November 2020
Internal
Installation
Homebrew
brew install azure-cli
Login
az login
The command starts a browser for authentication, and if the login is successful, shows something similar to:
The default web browser has been opened at https://login.microsoftonline.com/common/oauth2/authorize. Please continue the login in the web browser. If no web browser is available or if the web browser fails to open, use device code flow with `az login --use-device-code`.
You have logged in. Now let us find all the subscriptions to which you have access...
[
{
"cloudName": "AzureCloud",
"homeTenantId": "55555555-9999-4444-bbbb-aaaaaaaaaaaa",
"id": "99999999-9999-9999-9999-999999999999",
"isDefault": true,
"managedByTenants": [],
"name": "example.example.az(Converted to EA)",
"state": "Enabled",
"tenantId": "53ad779a-93e7-485c-ba20-ac8290d7252b",
"tenantId": <same-as-homeTenantId>,
"user": {
"name": "some.user@example.com",
"type": "user"
}
}
]