mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 11:42:58 -06:00
10 lines
147 B
HCL
10 lines
147 B
HCL
resource "aws_instance" "foo" {}
|
|
|
|
resource "aws_instance" "bar" {
|
|
value = "${aws_instance.foo.value}"
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
}
|