github.com/mehmetalisavas/terraform@v0.7.10/terraform/test-fixtures/plan-module-wrong-var-type/main.tf (about)

     1  variable "input" {
     2      type = "string"
     3      default = "hello world"
     4  }
     5  
     6  module "test" {
     7      source = "./inner"
     8  
     9      map_in = "${var.input}"
    10  }