mirror of
https://github.com/opentofu/opentofu.git
synced 2026-06-09 00:22:36 -04:00
8 lines
139 B
HCL
8 lines
139 B
HCL
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
compute = "foo"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "${aws_instance.foo.foo}"
|
|
}
|