mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
11 lines
163 B
HCL
11 lines
163 B
HCL
variable "things" {}
|
|
|
|
resource "aws_instance" "bar" {
|
|
baz = "baz"
|
|
count = 2
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = "${join(",",aws_instance.bar.*.baz)}"
|
|
}
|