Skip to content

Commit d7e0802

Browse files
committed
Split list for proper handling in asg module
- Subnets should be split at csv delimeter for properly handling in asg module.
1 parent 0062865 commit d7e0802

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)