mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
3c41a7ca1e
Crash during Validate walk with nested variable default.
7 lines
95 B
HCL
7 lines
95 B
HCL
variable "foo" {
|
|
default = [["foo", "bar"]]
|
|
}
|
|
variable "bar" {
|
|
default = [{foo = "bar"}]
|
|
}
|