config.tf 398 B

123456789101112131415
  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 = "sqs_fair_queueing"
  4. # Everything here should be self-explanatory
  5. profile = "default"
  6. region = "us-east-2"
  7. tags = {
  8. "tf_module" : basename(path.root)
  9. }
  10. }
  11. # Uncomment if needed
  12. #data "aws_caller_identity" "current" {}
  13. #data "aws_partition" "current" {}