viernes, 20 de octubre de 2023

AZURE - LOGIN WITH TENANT

 

Solucion a este problema


Encontrar el Tenant


SOLUCION:

az login --tenant 75fb3a5b-2add-4c27-8dfd-1e8d7a8166ff

VIDEO:

https://www.youtube.com/watch?v=yGWpKw059E4

jueves, 5 de octubre de 2023

AZURE cambiar de Supscripcion

 

# change the active subscription using the subscription name az account set --subscription "My Demos" # change the active subscription using the subscription ID az account set --subscription "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" # change the active subscription using a variable subscriptionId="$(az account list --query "[?name=='my case sensitive subscription full name'].id" --output tsv)" az account set --subscription $subscriptionId

https://learn.microsoft.com/es-es/cli/azure/manage-azure-subscriptions-azure-cli