github.com/kevinklinger/open_terraform@v1.3.6/noninternal/configs/testdata/error-files/variable_type_quoted.tf (about)

     1  variable "bad_string" {
     2    type = "string" # ERROR: Invalid quoted type constraints
     3  }
     4  
     5  variable "bad_map" {
     6    type = "map" # ERROR: Invalid quoted type constraints
     7  }
     8  
     9  variable "bad_list" {
    10    type = "list" # ERROR: Invalid quoted type constraints
    11  }