mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 23:22:57 -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}"
|
|
}
|