Skip to content

Commit

Permalink
Merge pull request #10 from Flaconi/plt-0-adjustment
Browse files Browse the repository at this point in the history
PLT-0 - Make redrive policy optional
  • Loading branch information
cytopia authored Dec 2, 2024
2 parents 710e526 + fa2c45b commit 2b02a1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_sns_topic_subscriptions"></a> [sns\_topic\_subscriptions](#input\_sns\_topic\_subscriptions) | SNS Subscriptions | <pre>list(object({<br> name = string<br> topic_arn = string<br> protocol = string<br> endpoint = string<br> endpoint_auto_confirms = bool<br> raw_message_delivery = bool<br> filter_policy = string<br> redrive_policy = string<br> }))</pre> | `[]` | no |
| <a name="input_sns_topic_subscriptions"></a> [sns\_topic\_subscriptions](#input\_sns\_topic\_subscriptions) | SNS Subscriptions | <pre>list(object({<br> name = string<br> topic_arn = string<br> protocol = string<br> endpoint = string<br> endpoint_auto_confirms = bool<br> raw_message_delivery = bool<br> filter_policy = string<br> redrive_policy = optional(string)<br> }))</pre> | `[]` | no |

## Outputs

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ variable "sns_topic_subscriptions" {
endpoint_auto_confirms = bool
raw_message_delivery = bool
filter_policy = string
redrive_policy = string
redrive_policy = optional(string)
}))
default = []
description = "SNS Subscriptions"
Expand Down

0 comments on commit 2b02a1b

Please sign in to comment.