blob: 40c7618fe09b7ccfea9384deb8a876583227ea44 [file] [log] [blame]
resource "aws_instance" "parent" {
count = 2
}
module "child" {
source = "./child"
things = "${join(",", aws_instance.parent.*.id)}"
}