From 07c01a7e6e3439084220421a010d48699b1ef43a Mon Sep 17 00:00:00 2001 From: Alexander Miehe Date: Mon, 2 Dec 2024 12:17:35 +0100 Subject: [PATCH] PLT-0 - Make redrive policy optional * make redrive policy optional as you now can not create a subscription without redrive policy --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 81c931d..fdb399c 100644 --- a/variables.tf +++ b/variables.tf @@ -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"