github.com/tomaszheflik/terraform@v0.7.3-0.20160827060421-32f990b41594/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 }