mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 12:20:28 -06:00
8 lines
112 B
Terraform
8 lines
112 B
Terraform
|
resource "aws_instance" "a" {
|
||
|
value = "${module.child.output}"
|
||
|
}
|
||
|
|
||
|
module "child" {
|
||
|
source = "./child"
|
||
|
}
|