github.com/tompao/terraform@v0.6.10-0.20180215233341-e41b29d0961b/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 }