mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-02 09:00:19 -05:00
10 lines
159 B
HCL
10 lines
159 B
HCL
module "mod1" {
|
|
source = "./mod"
|
|
param = ["this", "one", "works"]
|
|
}
|
|
|
|
module "mod2" {
|
|
source = "./mod"
|
|
param = ["${module.mod1.out_from_splat[0]}"]
|
|
}
|