123456789101112131415161718192021 |
- variable "source_sqs_arn" {
- type = string
- description = "ARN of the source SQS queue"
- }
- variable "sqs_prefix" {
- type = string
- description = "Prefix for the fair-queued queues"
- }
- variable "hash_jsonpath" {
- description = "Hash the value at this JSONPath from the source message to determine the destination queue"
- type = string
- default = "$"
- }
- variable "num_queues" {
- type = number
- description = "How many fair queues to create."
- default = 16
- }
|