github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/terraform/test-fixtures/plan-module-variable-from-splat/main.tf (about)

     1  module "mod1" {
     2    source = "mod"
     3    param  = ["this", "one", "works"]
     4  }
     5  
     6  module "mod2" {
     7    source = "mod"
     8    param  = ["${module.mod1.out_from_splat[0]}"]
     9  }