config.tf 337 B

123456789101112131415
  1. locals {
  2. sqs_prefix = "fdamstra-fair-queueing-test-fq"
  3. # Everything here should be self-explanatory
  4. profile = "default"
  5. region = "us-east-2"
  6. tags = {
  7. "tf_module" : basename(path.root)
  8. }
  9. }
  10. # Uncomment if needed
  11. #data "aws_caller_identity" "current" {}
  12. #data "aws_partition" "current" {}
  13. #data "aws_region" "current" {}