Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
plan-count-splat-reference
/
main.tf
blob: 76834e2555c88c22019d226aaff8ceccd105ba37 [
file
] [
log
] [
blame
]
resource
"aws_instance"
"foo"
{
name
=
"foo ${count.index}"
count
=
3
}
resource
"aws_instance"
"bar"
{
foo_name
=
"${aws_instance.foo.*.name[count.index]}"
count
=
3
}