mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-14 04:01:09 -04: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]}"
|
|
}
|