From 1415ff31587be97158105af0695fc357ceed015f Mon Sep 17 00:00:00 2001 From: Gerard Clos Date: Fri, 27 Sep 2024 13:55:36 +0200 Subject: [PATCH] chore: added codedeploy permissions to deployer role --- apps/infra/src/core/iam.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/infra/src/core/iam.ts b/apps/infra/src/core/iam.ts index cb4f9f36e..d88348657 100644 --- a/apps/infra/src/core/iam.ts +++ b/apps/infra/src/core/iam.ts @@ -67,6 +67,7 @@ export const deployerPolicyDocument: aws.iam.PolicyDocument = { 'secretsmanager:*', 'cloudformation:*', 'ssm:*', + 'codedeploy:*', ], Resource: '*', },