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 84f7ab3 commit 9b04618Copy full SHA for 9b04618
terraform/infrastructure/modules/firehose/iam_subscriptions.tf
@@ -22,6 +22,7 @@ data "aws_iam_policy_document" "firehose_subscription" {
22
effect = "Allow"
23
resources = [
24
aws_kinesis_firehose_delivery_stream.firehose.arn,
25
+ aws_kinesis_firehose_delivery_stream.reporting_stream.arn,
26
]
27
}
28
statement {
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 = aws_s3_bucket.reporting.arn
+ bucket_arn = aws_s3_bucket.source-data-bucket.arn
67
68
processing_configuration {
69
enabled = "true"
0 commit comments