Skip to content

Commit

Permalink
fix authorizer permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
djelusic committed Feb 24, 2022
1 parent 853b6a6 commit f789ebe
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions node/terraform/modules/api/iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ data "aws_iam_policy_document" "authorizer" {
]

}
statement {
effect = "Allow"
actions = [
"ssm:GetParameter",
]
resources = [
"*",
]
}
}

resource "aws_iam_role_policy" "authorizer" {
Expand Down

0 comments on commit f789ebe

Please sign in to comment.