vars.tf 502 B

123456789101112131415161718192021
  1. variable "source_sqs_arn" {
  2. type = string
  3. description = "ARN of the source SQS queue"
  4. }
  5. variable "sqs_prefix" {
  6. type = string
  7. description = "Prefix for the fair-queued queues"
  8. }
  9. variable "hash_jsonpath" {
  10. description = "Hash the value at this JSONPath from the source message to determine the destination queue"
  11. type = string
  12. default = "$"
  13. }
  14. variable "num_queues" {
  15. type = number
  16. description = "How many fair queues to create."
  17. default = 16
  18. }