Skip to content

Commit

Permalink
Fixed secrets policy to set resources to [<arn>, ...] instead of `[…
Browse files Browse the repository at this point in the history
…[<arn>,...]]`.
  • Loading branch information
BSick7 committed Feb 1, 2024
1 parent b99fd53 commit 1e5f30a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.4.9 (Feb 01, 2024)
* Fixed secrets policy to set resources to `[<arn>, ...]` instead of `[[<arn>,...]]`.

# 0.4.8 (Feb 01, 2024)
* Fixed usage of `for_each` in secrets policy.

Expand Down
2 changes: 1 addition & 1 deletion secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ data "aws_iam_policy_document" "secrets" {
content {
sid = "AllowReadSecrets"
effect = "Allow"
resources = [statement.value]
resources = statement.value

actions = [
"secretsmanager:GetSecretValue",
Expand Down

0 comments on commit 1e5f30a

Please sign in to comment.