v0.20.0
Add fifo suffix, redrive policy, and additional outputs @nitrocode (#43)
what
- Allow periods in sqs fifo queue and sns topic if
fifo_topic
is true - Support
redrive_policy
- Added additional outputs
why
- fifo queues and sns topic require
.fifo
in their names and the default regex in context is stripping out the period
references
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sns_topic#name
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sqs_queue#name
- Closes #40
- Closes #42
- Closes #25
test
module "sns" {
source = "git::https://github.com/cloudposse/terraform-aws-sns-topic.git?ref=sqs_queue_allow_periods"
fifo_topic = true
sqs_dlq_enabled = true
fifo_queue_enabled = true
}