Skip to content

Commit 0c66f73

Browse files
committed
NRL-1187 decompress logs
1 parent 9f4f5d1 commit 0c66f73

File tree

1 file changed

+10
-1
lines changed
  • terraform/infrastructure/modules/firehose

1 file changed

+10
-1
lines changed

terraform/infrastructure/modules/firehose/kinesis.tf

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,16 @@ resource "aws_kinesis_firehose_delivery_stream" "reporting_stream" {
6767
bucket_arn = var.reporting_bucket_arn
6868

6969
processing_configuration {
70-
enabled = "false"
70+
enabled = "true"
71+
72+
processors {
73+
type = "Decompression"
74+
parameters {
75+
parameter_name = "CompressionFormat"
76+
parameter_value = "GZIP"
77+
}
78+
}
79+
7180
}
7281

7382
cloudwatch_logging_options {

0 commit comments

Comments
 (0)