opentofu/config/test-fixtures/validate-var-nested/main.tf
James Bardin 3c41a7ca1e Add test for Validate crash
Crash during Validate walk with nested variable default.
2017-03-07 15:01:29 -05:00

7 lines
95 B
HCL

variable "foo" {
default = [["foo", "bar"]]
}
variable "bar" {
default = [{foo = "bar"}]
}