mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 04:10:28 -06:00
11 lines
162 B
HCL
11 lines
162 B
HCL
resource "aws_instance" "foo" {
|
|
id = "foo"
|
|
num = "2"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
id = "bar"
|
|
num = "2"
|
|
foo = "${aws_instance.foo.id}"
|
|
}
|