Skip to content

Commit a6b7324

Browse files
authored
Merge pull request #14 from unifio/handle-subnet-list
Split list for proper handling in asg module
2 parents 0062865 + d7e0802 commit a6b7324

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

certs/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ module "cluster" {
205205

206206
# VPC parameters
207207
vpc_id = "${var.vpc_id}"
208-
subnets = ["${var.subnets}"]
208+
subnets = ["${split(",",var.subnets)}"]
209209

210210
# LC parameters
211211
ami = "${coalesce(var.ami_custom, lookup(var.ami_region_lookup, var.region))}"

0 commit comments

Comments
 (0)