File tree Expand file tree Collapse file tree
infrastructure/modules/eventpub Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,4 +5,5 @@ resource "aws_sns_topic_subscription" "firehose" {
55 protocol = " firehose"
66 subscription_role_arn = aws_iam_role. sns_role . arn
77 endpoint = aws_kinesis_firehose_delivery_stream. main [0 ]. arn
8+ raw_message_delivery = var. raw_message_delivery
89}
Original file line number Diff line number Diff line change @@ -73,8 +73,6 @@ variable "enable_sns_delivery_logging" {
7373 default = false
7474}
7575
76-
77-
7876variable "sns_success_logging_sample_percent" {
7977 type = number
8078 description = " Enable SNS Delivery Successful Sample Percentage"
@@ -114,3 +112,9 @@ variable "iam_permissions_boundary_arn" {
114112 description = " The ARN of the permissions boundary to use for the IAM role"
115113 default = null
116114}
115+
116+ variable "firehose_raw_message_delivery" {
117+ type = bool
118+ description = " Enables raw message delivery on firehose subscription"
119+ default = false
120+ }
You can’t perform that action at this time.
0 commit comments