opentofu/internal/tofu/testdata/apply-empty-module/main.tf
2023-09-20 15:16:53 +03:00

8 lines
110 B
HCL

module "child" {
source = "./child"
}
output "end" {
value = "${module.child.aws_route53_zone_id}"
}