github.com/wata727/tflint@v0.12.2-0.20191013070026-96dd0d36f385/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  }