remote_state_network.tf 407 B

12345678910111213
  1. data "terraform_remote_state" "network" {
  2. backend = "s3"
  3. config = {
  4. # This must match the name from the bootstrap directory
  5. bucket = "ftd-splunk-standalone-terraform-state"
  6. # This must match the folder from the 2.network backend directory
  7. key = "splunk/network/terraform.tfstate"
  8. region = "us-east-2"
  9. encrypt = true
  10. kms_key_id = "alias/splunk-standalone-terraform"
  11. }
  12. }