Skip to content

Instantly share code, notes, and snippets.

@joshdvir
Created February 6, 2018 15:52
Show Gist options
  • Save joshdvir/4cc2b72b10b63f140798d64341e6460e to your computer and use it in GitHub Desktop.
Save joshdvir/4cc2b72b10b63f140798d64341e6460e to your computer and use it in GitHub Desktop.
example terraform http remote state
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