mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-28 14:00:58 -05:00
10 lines
168 B
HCL
10 lines
168 B
HCL
resource "aws_instance" "foo" {
|
|
count = 2
|
|
compute = "ip.#"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
count = 1
|
|
foo = "${aws_instance.foo.*.ip[count.index]}"
|
|
}
|