backend.tf 416 B

123456789101112
  1. # This is where terraform stores state, which allows for multiple
  2. # developers on teh same terraform configuration.
  3. terraform {
  4. backend "s3" {
  5. # This must match the name from the bootstrap directory
  6. bucket = "ftd-splunk-standalone-terraform-state"
  7. key = "splunk/infrastructure/terraform.tfstate"
  8. region = "us-east-2"
  9. encrypt = true
  10. kms_key_id = "alias/splunk-standalone-terraform"
  11. }
  12. }