This is not an issue with VMware Cloud Director, but is as a result of external manipulation of Cloud Director objects.
To workaround the issue, see the Workaround section below.
Workaround:
To resolve this issue, you need to ensure that the cloud.uuid value is unique in vCenter, or removed completely from the VM you do not wish Cloud Director to manage.
To identify affected Cloud Director VMs, you can connect to the Cloud Director Database and run the following SQL.
Note:
Modification of the SQL below may be required to fit your unique scenario.
select
vmi.name,
vm.creation_status,
vmi.moref as VMINV,
vm.moref as VM,
cvm.vmmoref as CVM,
vmi.cloud_uuid,
--vmi.instance_uuid,
vmi.vm_path_name as VMINV_DS,
vm.location_path as VM_DS,
vm.dstore_moref,
dsi.vc_display_name
from vm_inv
inner join vm_inv vmi on vmi.cloud_uuid = vm_inv.cloud_uuid
left join vm on vm.moref = vmi.moref
left join computevm cvm on cvm.vmmoref = vmi.moref
left join datastore_inv dsi on dsi.moref = vm.dstore_moref
--where vm_inv.name like '%<Name of VM in vCenter>%'
order by vmi.cloud_uuid;
For information on removing the VM from Cloud Director's scope, see the Related Information.