We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8de638 commit 9c19ebeCopy full SHA for 9c19ebe
terraform/infrastructure/firehose.tf
@@ -8,5 +8,5 @@ module "firehose__processor" {
8
splunk_environment = local.splunk_environment
9
splunk_index = local.splunk_index
10
destination = "splunk"
11
- reporting_bucket_arn = data.aws_s3_bucket.source-data-bucket.arn
+ reporting_bucket_arn = data.aws_s3_bucket.source-data-bucket.arn[count.index]
12
}
terraform/infrastructure/modules/firehose/kinesis.tf
@@ -63,7 +63,7 @@ resource "aws_kinesis_firehose_delivery_stream" "reporting_stream" {
63
64
extended_s3_configuration {
65
role_arn = aws_iam_role.firehose.arn
66
- bucket_arn = var.reporting_bucket_arn[count.index]
+ bucket_arn = var.reporting_bucket_arn
67
68
processing_configuration {
69
enabled = "true"
0 commit comments