backend.tf 271 B

12345678910
  1. terraform {
  2. backend "s3" {
  3. bucket = "terraform-remote-state-20221017144428493300000001"
  4. # Key must be unique amongst all projects that use this backend
  5. key = "sqs_fair_queueing"
  6. region = "us-east-2"
  7. encrypt = true
  8. profile = "default"
  9. }
  10. }