bsmsapp/terraform/modules/sqs/README.md

3.0 KiB

Requirements

Name Version
terraform 1.3.4
aws >= 4.10.0

Providers

Name Version
aws 4.38.0

Modules

No modules.

Resources

Name Type
aws_lambda_event_source_mapping.event_source_mapping resource
aws_lambda_permission.allows_sqs_to_trigger_lambda resource
aws_sqs_queue.this resource

Inputs

Name Description Type Default Required
content_based_deduplication Enables content-based deduplication for FIFO queues. bool false no
delay_seconds The time in seconds that the delivery of all messages in the queue will be delayed. An integer from 0 to 900 (15 minutes). number 0 no
fifo_queue Boolean designating a FIFO queue. bool false no
lambda_name The name of the lambda to trigger when a message is queued. string null no
max_message_size The limit of how many bytes a message can contain before Amazon SQS rejects it. An integer from 1024 bytes (1 KiB) up to 262144 bytes (256 KiB). number 262144 no
message_retention_seconds The number of seconds Amazon SQS retains a message. Integer representing seconds, from 60 (1 minute) to 1209600 (14 days). number 345600 no
name This is the human-readable name of the queue. string n/a yes
receive_wait_time_seconds The time for which a ReceiveMessage call will wait for a message to arrive (long polling) before returning. An integer from 0 to 20 (seconds). number 0 no
tags A mapping of tags to assign to all resources. map(string) {} no

Outputs

Name Description
name The name of the SQS.
sqs_arn The ARN of SQS.