mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
Fixes #12788 We would panic when referencing an output from an undefined module. The panic above this is correct but in this case Load will not catch interpolated variables that _reference_ an unloaded/undefined module. Test included.
4 lines
71 B
HCL
4 lines
71 B
HCL
resource "null_resource" "var" {
|
|
key = "${module.unknown.value}"
|
|
}
|