mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-26 06:00:17 -05:00
9 lines
112 B
HCL
9 lines
112 B
HCL
resource "aws_instance" "foo" {}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
in = "${aws_instance.foo.id}"
|
|
}
|
|
|
|
|