mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-01 11:47:07 -06:00
9 lines
147 B
HCL
9 lines
147 B
HCL
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
compute = "foo"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "${aws_instance.foo.foo}"
|
|
}
|