github.com/opentofu/opentofu@v1.7.1/internal/tofu/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  }