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