Skip to content

Commit

Permalink
fix: error with placeholder in aws-policy-co-provision
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishumanitec committed Sep 2, 2024
1 parent b00160d commit 0d624cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ provider "aws" {
# ... Terraform code reduced for brevity
resource "aws_iam_policy" "bucket" {
name = "$${var.BUCKET}-policy"
name = "$\{var.BUCKET}-policy"
policy = data.aws_iam_policy_document.main.json
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ entity:
# ... Terraform code reduced for brevity
resource "aws_iam_policy" "bucket" {
name = "${var.BUCKET}-policy"
name = "$\{var.BUCKET}-policy"
policy = data.aws_iam_policy_document.main.json
}
Expand Down

0 comments on commit 0d624cf

Please sign in to comment.