mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-07 09:00:28 -05: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}"
|
|
}
|