github.com/tompao/terraform@v0.6.10-0.20180215233341-e41b29d0961b/terraform/test-fixtures/vars-basic/main.tf (about)

     1  variable "a" {
     2      default = "foo"
     3      type = "string"
     4  }
     5  
     6  variable "b" {
     7      default = []
     8      type = "list"
     9  }
    10  
    11  variable "c" {
    12      default = {}
    13      type = "map"
    14  }