Skip to content

Instantly share code, notes, and snippets.

@geekzter
Last active April 6, 2021 18:11
Show Gist options
  • Save geekzter/fba403aeddd6000868d2611bccab9587 to your computer and use it in GitHub Desktop.
Save geekzter/fba403aeddd6000868d2611bccab9587 to your computer and use it in GitHub Desktop.
Use Azure CLI to authenticate to Terraform interactively, Azure CLI subscription takes precedence
az login
az account set --subscription 00000000-0000-0000-0000-000000000000
$env:ARM_SUBSCRIPTION_ID=$(az account show --query "id" -o tsv)
$env:ARM_TENANT_ID=$(az account show --query "tenantId" -o tsv)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment