config.tf 428 B

1234567891011121314151617
  1. locals {
  2. sqs_prefix = "fdamstra-fair-queueing-test-fq"
  3. # Set to true to enable fair queue, or false to disable.
  4. fair_queueing_enabled = false
  5. # Everything here should be self-explanatory
  6. profile = "default"
  7. region = "us-east-2"
  8. tags = {
  9. "tf_module" : basename(path.root)
  10. }
  11. }
  12. # Uncomment if needed
  13. #data "aws_caller_identity" "current" {}
  14. #data "aws_partition" "current" {}
  15. #data "aws_region" "current" {}