-
-
Save mnjstwins/66c06821d0d278e0d779ab205f822d25 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