mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
* Fix nested module "unknown variable" during dstry During a destroy with nested modules, accessing a variable between them causes an "unknown variable accessed" during destroy.
5 lines
59 B
HCL
5 lines
59 B
HCL
module "middle" {
|
|
source = "./middle"
|
|
param = "foo"
|
|
}
|