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 c994a99 commit c83ec52Copy full SHA for c83ec52
terraform/infrastructure/data.tf
@@ -43,6 +43,5 @@ data "external" "current-info" {
43
}
44
45
data "aws_s3_bucket" "source-data-bucket" {
46
- count = var.use_shared_resources ? 1 : 0
47
bucket = "${local.shared_prefix}-source-data-bucket"
48
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[count.index].arn
+ bucket_arn = var.reporting_bucket.arn
67
68
processing_configuration {
69
enabled = "true"
0 commit comments