opentofu/terraform/testdata/transform-flatten/main.tf
2019-06-30 10:16:15 +02:00

13 lines
221 B
HCL

module "child" {
source = "./child"
var = "${aws_instance.parent.value}"
}
resource "aws_instance" "parent" {
value = "foo"
}
resource "aws_instance" "parent-output" {
value = "${module.child.output}"
}