mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
This PR fixes #7824, which crashed when applying a plan file. The bug is that while a map which has come from the HCL parser reifies as a []map[string]interface{}, the variable saved in the plan file was not. We now cover both cases. Fixes #7824.
6 lines
69 B
HCL
6 lines
69 B
HCL
variable "test" {
|
|
type = "map"
|
|
default = {
|
|
"test" = "1"
|
|
}
|
|
} |