Jelajahi Sumber

Minor fixes

Fred Damstra (Macbook 2015) 2 tahun lalu
induk
melakukan
27ab767c7e
2 mengubah file dengan 3 tambahan dan 3 penghapusan
  1. 2 2
      main.tf
  2. 1 1
      module_sqs_fair_queueing/vars.tf

+ 2 - 2
main.tf

@@ -54,9 +54,9 @@ resource "aws_s3_bucket_server_side_encryption_configuration" "bucket" {
 }
 
 
-# SNS and SQS configuration for the root bucket
+# SQS configuration for the root bucket
 # 
-# NOTE! Only this first sns/sqs needs to be set up.
+# NOTE! Only this first sqs needs to be set up.
 # The module will set up the sqs queues for FIFO.
 # 
 # Remember that the consumer service needs access to the FIFO queues,

+ 1 - 1
module_sqs_fair_queueing/vars.tf

@@ -19,7 +19,7 @@ variable "sqs_prefix" {
 }
 
 variable "hash_jsonpath" {
-  description = "Hash the value at this JSONPath from the source message to determine the destination queue"
+  description = "Hash the value at this JSONPath from the source message to determine the destination queue. NOTE: If this fails to locate a string, fails to parse, or is set to `$`, fair queueing will default to a random queue assignment."
   type        = string
   default     = "$"
 }