github.com/alkar/terraform@v0.9.6-0.20170517124458-a4cddf6ebf59/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