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