mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 07:26:26 -06:00
8 lines
111 B
HCL
8 lines
111 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
resource "aws_instance" "b" {
|
|
blah = "${module.child.a_output}"
|
|
}
|