Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
apply-interpolated-count
/
main.tf
blob: 527a0b84205c28ab5c776007fbf0b04ea206f653 [
file
] [
log
] [
blame
]
variable
"instance_count"
{
default
=
1
}
resource
"aws_instance"
"test"
{
count
=
"${var.instance_count}"
}
resource
"aws_instance"
"dependent"
{
count
=
"${length(aws_instance.test)}"
}