github.com/boyvanduuren/terraform@v0.7.0-rc2.0.20160805175930-de822d909c40/command/test-fixtures/push-tfvars/main.tf (about) 1 variable "foo" {} 2 3 variable "bar" {} 4 5 variable "baz" { 6 type = "map" 7 8 default = { 9 "A" = "a" 10 interp = "${file("t.txt")}" 11 } 12 } 13 14 variable "fob" { 15 type = "list" 16 default = ["a", "quotes \"in\" quotes"] 17 } 18 19 resource "test_instance" "foo" {} 20 21 atlas { 22 name = "foo" 23 }