mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 15:36:26 -06:00
9 lines
137 B
Terraform
9 lines
137 B
Terraform
|
resource "aws_instance" "foo" {
|
||
|
count = 0
|
||
|
foo = "foo"
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "bar" {
|
||
|
foo = "${aws_instance.foo.*.foo}"
|
||
|
}
|