Skip to content

Commit

Permalink
Merge pull request #22 from DNXLabs/feature/add-secrets-policy
Browse files Browse the repository at this point in the history
Add missing ListSecrets policy
  • Loading branch information
adenot authored Jan 8, 2025
2 parents 61a2fbe + c85871a commit 8a45f7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,15 +295,15 @@ spec:
| Name | Version |
|------|---------|
| terraform | >= 0.13 |
| aws | >= 3.13, < 4.0 |
| aws | >= 3.13 |
| helm | >= 1.0, < 3.0 |
| kubernetes | >= 1.10.0, < 3.0.0 |

## Providers

| Name | Version |
|------|---------|
| aws | >= 3.13, < 4.0 |
| aws | >= 3.13 |
| helm | >= 1.0, < 3.0 |
| kubernetes | >= 1.10.0, < 3.0.0 |

Expand Down
3 changes: 2 additions & 1 deletion iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ data "aws_iam_policy_document" "external_secrets" {
"secretsmanager:GetResourcePolicy",
"secretsmanager:GetSecretValue",
"secretsmanager:DescribeSecret",
"secretsmanager:ListSecretVersionIds"
"secretsmanager:ListSecretVersionIds",
"secretsmanager:ListSecrets",
]
resources = [
"*",
Expand Down

0 comments on commit 8a45f7c

Please sign in to comment.