mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 04:10:28 -06:00
c3ce23c7b4
passing output of one module into input of the following module results in a cycle
9 lines
96 B
HCL
9 lines
96 B
HCL
module "a" {
|
|
source = "./a"
|
|
}
|
|
|
|
module "b" {
|
|
source = "./b"
|
|
input = "${module.a.output}"
|
|
}
|