blob: ad8dd6073e5f79589f06d16ee6f8b66def3f560d [file] [log] [blame]
variable "things" {}
resource "aws_instance" "bar" {
baz = "baz"
count = 2
}
resource "aws_instance" "foo" {
foo = "${join(",",aws_instance.bar.*.baz)}"
}