Skip to content

Commit

Permalink
Add BatchGet IAM permission for External Secrets
Browse files Browse the repository at this point in the history
External Secrets now support bulk fetching secrets to reduce AWS API calls. This adds the IAM permission to support this feature,
  • Loading branch information
theseanything authored Dec 27, 2024
1 parent ba59b38 commit 22d5e4d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ data "aws_iam_policy_document" "external_secrets" {
"secretsmanager:GetResourcePolicy",
"secretsmanager:GetSecretValue",
"secretsmanager:DescribeSecret",
"secretsmanager:ListSecretVersionIds"
"secretsmanager:ListSecretVersionIds",
"secretsmanager:BatchGetSecretValue"
]

resources = [
Expand Down

0 comments on commit 22d5e4d

Please sign in to comment.