Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
plan-module-multi-var
/
main.tf
blob: 40c7618fe09b7ccfea9384deb8a876583227ea44 [
file
] [
log
] [
blame
]
resource
"aws_instance"
"parent"
{
count
=
2
}
module
"child"
{
source
=
"./child"
things
=
"${join("
,
", aws_instance.parent.*.id)}"
}