We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c844893 commit 712b412Copy full SHA for 712b412
infrastructure/terraform/modules/backend-api/module_lambda_sftp_poll.tf
@@ -22,6 +22,13 @@ module "lambda_sftp_poll" {
22
23
timeout = 60 * 10
24
memory_size = 2048
25
+
26
+ vpc = {
27
+ id = data.aws_vpc.account_vpc.id
28
+ cidr_block = data.aws_vpc.account_vpc.cidr_block
29
+ subnet_ids = data.aws_subnets.account_vpc_private_subnets.ids
30
+ security_group_ids = [data.aws_security_group.account_vpc_sg_allow_sftp_egress.id]
31
+ }
32
}
33
34
data "aws_iam_policy_document" "sftp_poll" {
0 commit comments