Skip to content

Commit daffe6f

Browse files
committed
VED-26: Add missing permissions for VPC access.
1 parent c3eca63 commit daffe6f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

terraform/forwarder_lambda.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,15 @@ resource "aws_iam_policy" "forwarding_lambda_exec_policy" {
185185
"sqs:SendMessage"
186186
]
187187
Resource = aws_sqs_queue.fifo_queue.arn
188+
},
189+
{
190+
Effect = "Allow",
191+
Action = [
192+
"ec2:CreateNetworkInterface",
193+
"ec2:DescribeNetworkInterfaces",
194+
"ec2:DeleteNetworkInterface"
195+
],
196+
Resource = "*"
188197
}
189198
]
190199
})

0 commit comments

Comments
 (0)