github.com/chalford/terraform@v0.3.7-0.20150113080010-a78c69a8c81f/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