github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/terraform/testdata/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 }