github.com/jpreese/tflint@v0.19.2-0.20200908152133-b01686250fb6/integration/without_module_init/module.tf (about)

     1  variable "unknown" {}
     2  
     3  variable "instance_type" {
     4    default = "t1.2xlarge"
     5  }
     6  
     7  // terraform init did not run
     8  module "instances" {
     9    source = "./module"
    10  
    11    unknown = var.unknown
    12    instance_type = var.instance_type
    13  }