8 lines
112 B
HCL
8 lines
112 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = "${module.child.output}"
|
|
}
|