mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-23 23:50:12 -06: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)}"
|
|
}
|