mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 23:22:57 -06:00
9 lines
112 B
HCL
9 lines
112 B
HCL
resource "aws_instance" "foo" {}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
in = "${aws_instance.foo.id}"
|
|
}
|
|
|
|
|