opentofu/terraform/test-fixtures/validate-module-deps-cycle/main.tf
Paul Hinze c3ce23c7b4 core: failing test for a bad module cycle
passing output of one module into input of the following module results
in a cycle
2015-05-04 18:58:29 -05:00

9 lines
96 B
HCL

module "a" {
source = "./a"
}
module "b" {
source = "./b"
input = "${module.a.output}"
}