## Requirements | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.3.1 | | [aws](#requirement\_aws) | >= 4.10.0 | ## Providers | Name | Version | |------|---------| | [aws](#provider\_aws) | 4.38.0 | ## Modules No modules. ## Resources | Name | Type | |------|------| | [aws_lambda_event_source_mapping.event_source_mapping](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_event_source_mapping) | resource | | [aws_lambda_permission.allows_sqs_to_trigger_lambda](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_permission) | resource | | [aws_sqs_queue.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sqs_queue) | resource | ## Inputs | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [content\_based\_deduplication](#input\_content\_based\_deduplication) | Enables content-based deduplication for FIFO queues. | `bool` | `false` | no | | [delay\_seconds](#input\_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](#input\_fifo\_queue) | Boolean designating a FIFO queue. | `bool` | `false` | no | | [lambda\_name](#input\_lambda\_name) | The name of the lambda to trigger when a message is queued. | `string` | `null` | no | | [max\_message\_size](#input\_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](#input\_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](#input\_name) | This is the human-readable name of the queue. | `string` | n/a | yes | | [receive\_wait\_time\_seconds](#input\_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](#input\_tags) | A mapping of tags to assign to all resources. | `map(string)` | `{}` | no | ## Outputs | Name | Description | |------|-------------| | [name](#output\_name) | The name of the SQS. | | [sqs\_arn](#output\_sqs\_arn) | The ARN of SQS. |