mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-18 20:52:58 -06:00
10 lines
124 B
HCL
10 lines
124 B
HCL
resource "aws_instance" "foo" {
|
|
foo = "bar"
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
|
|
var = "${aws_instance.foo.foo}"
|
|
}
|