1234567891011121314151617 |
- locals {
- sqs_prefix = "fdamstra-fair-queueing-test-fq"
- # Set to true to enable fair queue, or false to disable.
- fair_queueing_enabled = false
- # 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" {}
- #data "aws_region" "current" {}
|