mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-15 22:00:34 -05:00
9 lines
148 B
HCL
9 lines
148 B
HCL
resource "aws_instance" "foo" {
|
|
count = 5
|
|
foo = "foo"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "${join(",", aws_instance.foo.*.foo)}"
|
|
}
|