mirror of https://github.com/hashicorp/terraform
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.pull/12793/head
parent
31c0f33431
commit
68ee4e0480
@ -0,0 +1,3 @@
|
||||
resource "null_resource" "var" {
|
||||
key = "${module.unknown.value}"
|
||||
}
|
||||
Loading…
Reference in new issue