Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
infra: add apprunner iam access (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
timmyers authored Feb 22, 2023
1 parent da48af2 commit 60c87eb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions terraform/iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ resource "aws_iam_role_policy_attachment" "ecr" {
policy_arn = "arn:aws:iam::aws:policy/AmazonElasticContainerRegistryPublicFullAccess"
}

resource "aws_iam_role_policy_attachment" "apprunner" {
role = aws_iam_role.infrastructure.name
policy_arn = "arn:aws:iam::aws:policy/AWSAppRunnerFullAccess"
}

data "aws_iam_openid_connect_provider" "github" {
url = "https://token.actions.githubusercontent.com"
}
Expand Down

0 comments on commit 60c87eb

Please sign in to comment.