Skip to content

Commit

Permalink
fix: Add ListCertificates permission (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
antroy-madetech authored Jun 24, 2024
1 parent 1d566f1 commit 4f53a0c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions environment-pipelines/iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,15 @@ data "aws_iam_policy_document" "certificate" {
"arn:aws:acm:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:certificate/*"
]
}

statement {
actions = [
"acm:ListCertificates",
]
resources = [
"*"
]
}
}

data "aws_iam_policy_document" "security_group" {
Expand Down

0 comments on commit 4f53a0c

Please sign in to comment.