Create Vmware workers one after the another

Hi Team ,

is there a way i can create machine 1 first then machine 2 and so on ?I am using count currently but that is creating the machines in random order .
Thank you !!
My block of code
resource “vcd_vapp_vm” “vmware_instance” {

count = local.totalVMs

vapp_name = vcd_vapp.vmware_satellite_vapp.name
name = “vm-{var.location}-{count.index + 1}”
catalog_name = “Public Catalog”
template_name = “rhcos OpenShift 4.8.14”
memory = 32768
cpus = 8

Let me know if the use case is clearly explained .Any help highly appreciated .