Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
nested-resource-count-plan
/
main.tf
blob: f803fd1f654110f24ccd6e0aa467d660942d7359 [
file
] [
log
] [
blame
]
resource
"aws_instance"
"foo"
{
count
=
2
}
resource
"aws_instance"
"bar"
{
count
=
"${length(aws_instance.foo.*.id)}"
}
resource
"aws_instance"
"baz"
{
count
=
"${length(aws_instance.bar.*.id)}"
}