opentofu/config/testdata/variable-mismatched-type.tf
2019-06-30 10:16:15 +02:00

8 lines
98 B
HCL

variable "not_a_map" {
type = "string"
default = {
i_am_not = "a string"
}
}