github.com/hs0210/hashicorp-terraform@v0.11.12-beta1/configs/test-fixtures/valid-files/variables.tf (about) 1 2 variable "foo" { 3 } 4 5 variable "bar" { 6 default = "hello" 7 } 8 9 variable "baz" { 10 type = list 11 } 12 13 variable "bar-baz" { 14 default = [] 15 type = list(string) 16 } 17 18 variable "cheeze_pizza" { 19 description = "Nothing special" 20 } 21 22 variable "π" { 23 default = 3.14159265359 24 }