backend.tf 265 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 = "game_server"
  6. region = "us-east-2"
  7. encrypt = true
  8. profile = "default"
  9. }
  10. }