terraform/configs/testdata/warning-files/variable_type_quoted.tf

12 lines
274 B
HCL

variable "bad_string" {
type = "string" # WARNING: Quoted type constraints are deprecated
}
variable "bad_map" {
type = "map" # WARNING: Quoted type constraints are deprecated
}
variable "bad_list" {
type = "list" # WARNING: Quoted type constraints are deprecated
}