github.com/xyziemba/terraform@v0.7.1-0.20160816223025-3ea544774db1/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  }