Skip to content

Commit

Permalink
fix: vpc_config.subnet_ids must be a list (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfvermut authored and agassner committed Sep 17, 2019
1 parent 6849392 commit 151df20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "aws_lambda_function" "lambda_function" {
tags = "${var.tags}"

vpc_config {
subnet_ids = "${var.subnet_ids}"
subnet_ids = ["${var.subnet_ids}"]
security_group_ids = ["${var.security_group_ids}"]
}

Expand Down

0 comments on commit 151df20

Please sign in to comment.