mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
3eb0e74ef9
Destroy-time references are not correctly or fully inverted when crossing module boundaries, causing cycle during apply.
9 lines
92 B
HCL
9 lines
92 B
HCL
module "a" {
|
|
source = "./mod1"
|
|
}
|
|
|
|
module "b" {
|
|
source = "./mod2"
|
|
ids = module.a.ids
|
|
}
|