github.com/mineiros-io/terradoc@v0.0.9-0.20220711062319-018bd4ae81f5/test/testdata/validate/variables/type-mismatch.tf (about)

     1  variable "person" {
     2    type = any
     3  }
     4  
     5  variable "beer" {
     6    type = string
     7  }
     8  
     9  variable "number" {
    10    type = list(string)
    11  }
    12  
    13  variable "cars" {
    14    type = any
    15  }