github.com/kanishk98/terraform@v1.3.0-dev.0.20220917174235-661ca8088a6a/internal/terraform/testdata/vars-basic/main.tf (about) 1 variable "a" { 2 default = "foo" 3 type = string 4 } 5 6 variable "b" { 7 default = [] 8 type = list(string) 9 } 10 11 variable "c" { 12 default = {} 13 type = map(string) 14 }