mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 04:10:28 -06:00
9 lines
137 B
HCL
9 lines
137 B
HCL
resource "aws_instance" "foo" {
|
|
count = 1
|
|
foo = "foo"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "${aws_instance.foo.0.foo}"
|
|
}
|