terraform/internal/configs/testdata/error-files/variable_type_quoted.tf

12 lines
247 B
HCL

variable "bad_string" {
type = "string" # ERROR: Invalid quoted type constraints
}
variable "bad_map" {
type = "map" # ERROR: Invalid quoted type constraints
}
variable "bad_list" {
type = "list" # ERROR: Invalid quoted type constraints
}