Skip to content

Commit

Permalink
fix: Add missing environment pipeline permission (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnStainsby authored Nov 29, 2024
1 parent 96b5935 commit 57f4ea1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions environment-pipelines/iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -847,6 +847,13 @@ data "aws_iam_policy_document" "cloudformation" {
"arn:aws:cloudformation:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:stackset/${var.application}-infrastructure:*",
]
}

statement {
actions = [
"cloudformation:ListExports"
]
resources = ["*"]
}
}

resource "aws_iam_policy" "cloudformation" {
Expand Down

0 comments on commit 57f4ea1

Please sign in to comment.