blob: 680d30ffaa3630063b21c8e6a751d64d02609f35 [file] [log] [blame]
resource "aws_instance" "foo" {
count = 3
}
resource "aws_instance" "bar" {
foo = ["${aws_instance.foo.*.id}"]
}