123456789101112131415161718 |
- locals {
- # I like unique id to match the terraform backend storage, and I use it for various names and prefixes..
- unique_id = "game_server"
- # Everything here should be self-explanatory
- profile = "default"
- region = "us-east-2"
- tags = {
- "id" : local.unique_id,
- "tf_module" : basename(path.root),
- "project" : "game_server",
- }
- }
- # Uncomment if needed
- data "aws_caller_identity" "current" {}
- #data "aws_partition" "current" {}
- data "aws_region" "current" {}
|