terraform/config/testdata/variable-mismatched-type.tf

8 lines
98 B
HCL

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