Files
opentf/terraform/testdata/graph-diff-module-dep/main.tf
2019-06-30 10:16:15 +02:00

9 lines
112 B
HCL

resource "aws_instance" "foo" {}
module "child" {
source = "./child"
in = "${aws_instance.foo.id}"
}