Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
apply-local-val
/
main.tf
blob: 51ca2dedcf3a32851ec20b04df5405f242c887ca [
file
] [
log
] [
blame
]
module
"child"
{
source
=
"./child"
}
locals
{
result_1
=
"${module.child.result}"
result_2
=
"${local.result_1}"
result_3
=
"${local.result_2} world"
}