github.com/chentex/terraform@v0.11.2-0.20171208003256-252e8145842e/terraform/test-fixtures/plan-module-multi-var/main.tf (about) 1 resource "aws_instance" "parent" { 2 count = 2 3 } 4 5 module "child" { 6 source = "./child" 7 things = "${join(",", aws_instance.parent.*.id)}" 8 } 9