From 89f6c0f9afdcd3fa5a1d96abce3588df9a6f42a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20No=C3=ABl?= <21990816+philippemnoel@users.noreply.github.com> Date: Mon, 14 Mar 2022 15:54:09 -0400 Subject: [PATCH] add misisng Terraform permissions to WhistCI (#5871) --- backend/infrastructure/modules/aws_iam/main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/infrastructure/modules/aws_iam/main.tf b/backend/infrastructure/modules/aws_iam/main.tf index 84a4f406ff1..a895b04c13b 100644 --- a/backend/infrastructure/modules/aws_iam/main.tf +++ b/backend/infrastructure/modules/aws_iam/main.tf @@ -150,6 +150,8 @@ resource "aws_iam_group_policy_attachment" "CIPolicy" { "arn:aws:iam::aws:policy/AmazonEC2FullAccess", "arn:aws:iam::aws:policy/IAMFullAccess", "arn:aws:iam::aws:policy/AmazonS3FullAccess", + "arn:aws:iam::aws:policy/AmazonVPCFullAccess", + "arn:aws:iam::aws:policy/AmazonSecretsManagerReadWrite", ]) : [] policy_arn = each.value }