Skip to content

Instantly share code, notes, and snippets.

@bobalob
Created November 2, 2016 20:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save bobalob/6632690e33747c13a8c00875ee686be2 to your computer and use it in GitHub Desktop.
Save bobalob/6632690e33747c13a8c00875ee686be2 to your computer and use it in GitHub Desktop.
Set Environment Variables in PowerShell for Azure RM Terraform
#Set Environment Variables for Azure RM Terraform
$ENV:ARM_SUBSCRIPTION_ID = ""
$ENV:ARM_CLIENT_ID = ""
$ENV:ARM_CLIENT_SECRET = "" # This should end with an '=' symbol
$ENV:ARM_TENANT_ID = ""
@i255d
Copy link

i255d commented Mar 14, 2019

How do you use these variables in backend Terraform block?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment