opentofu/terraform/test-fixtures/graph-diff-module-dep-module/main.tf

9 lines
107 B
HCL

module "foo" {
source = "./foo"
}
module "bar" {
source = "./bar"
in = "${module.foo.data}"
}