config.tf 482 B

123456789101112131415161718
  1. locals {
  2. # I like unique id to match the terraform backend storage, and I use it for various names and prefixes..
  3. unique_id = "game_server"
  4. # Everything here should be self-explanatory
  5. profile = "default"
  6. region = "us-east-2"
  7. tags = {
  8. "id" : local.unique_id,
  9. "tf_module" : basename(path.root),
  10. "project" : "game_server",
  11. }
  12. }
  13. # Uncomment if needed
  14. data "aws_caller_identity" "current" {}
  15. #data "aws_partition" "current" {}
  16. data "aws_region" "current" {}