16 lines
160 B
Plaintext
16 lines
160 B
Plaintext
|
|
module "mod1" {
|
||
|
|
source = "./mod"
|
||
|
|
param = ["this", "one", "works"]
|
||
|
|
}
|
||
|
|
|
||
|
|
module "mod4" {
|
||
|
|
source = "./mod"
|
||
|
|
param
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
= [module.mod1.out_from_splat[0]]
|
||
|
|
}
|