Created
November 2, 2016 20:24
-
-
Save bobalob/6632690e33747c13a8c00875ee686be2 to your computer and use it in GitHub Desktop.
Set Environment Variables in PowerShell for Azure RM Terraform
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 = "" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How do you use these variables in backend Terraform block?