github.com/tushar-armorcode/terraform@v0.11.12-beta1/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    }
    11  }
    12  
    13  variable "fob" {
    14    type    = "list"
    15    default = ["a", "quotes \"in\" quotes"]
    16  }
    17  
    18  resource "test_instance" "foo" {}
    19  
    20  atlas {
    21    name = "foo"
    22  }