Skip to content

Commit

Permalink
Patch nasty templating issue
Browse files Browse the repository at this point in the history
  • Loading branch information
colmsnowplow committed Feb 20, 2024
1 parent e6f5655 commit 12c2bda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ EOF
}

locals {
incomplete_tmpl_for_iam = var.incomplete_stream_name == "" ? "" : "arn:aws:kinesis:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:stream/${var.incomplete_stream_name},"
incomplete_tmpl_for_iam = var.incomplete_stream_name == "" ? "" : "\"arn:aws:kinesis:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:stream/${var.incomplete_stream_name}\","
}

resource "aws_iam_policy" "iam_policy" {
Expand Down

0 comments on commit 12c2bda

Please sign in to comment.