blob: 2d8a799d058703407f6cc9ebeb7d40ea037f02d7 [file] [log] [blame]
resource "aws_instance" "foo" {
count = 2
compute = "ip.#"
}
resource "aws_instance" "bar" {
count = 1
foo = "${aws_instance.foo.*.ip[count.index]}"
}