Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
plan-module-variable-from-splat
/
main.tf
blob: be900a3c4a7bed1bf932e395cdfa6e5a6be13b5a [
file
] [
log
] [
blame
]
module
"mod1"
{
source
=
"./mod"
param
=
[
"this"
,
"one"
,
"works"
]
}
module
"mod2"
{
source
=
"./mod"
param
=
[
module
.
mod1
.
out_from_splat
[
0
]]
}