github.com/vic3lord/terraform@v0.8.0-rc1.0.20170626102919-16c6dd2cb372/terraform/test-fixtures/input-hcl/main.tf (about)

     1  variable "mapped" {
     2      type = "map"
     3  }
     4  
     5  variable "listed" {
     6      type = "list"
     7  }
     8  
     9  resource "hcl_instance" "hcltest" {
    10      foo = "${var.listed}"
    11      bar = "${var.mapped}"
    12  }