Created
February 6, 2018 15:52
-
-
Save joshdvir/4cc2b72b10b63f140798d64341e6460e to your computer and use it in GitHub Desktop.
example terraform http remote state
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
terraform { | |
backend "http" { | |
address = "https://tf.tfstate.com/" | |
lock_address = "https://tf.tfstate.com/" | |
unlock_address = "https://tf.tfstate.com/" | |
username = "exampleUser" | |
password = "examplePassword" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment