mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
7 lines
117 B
Terraform
7 lines
117 B
Terraform
|
resource "aws_instance" "foo" {}
|
||
|
|
||
|
module "child" {
|
||
|
source = "./child"
|
||
|
value = "${aws_instance.foo.output}"
|
||
|
}
|