github.com/kwoods/terraform@v0.6.11-0.20160809170336-13497db7138e/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 }