I'm provisioning a virtual machine from a packer clone using terraform. My question is not related to terraform, this is just the context, but I eventually end up getting this error:
```
update VM 108: -agent 1 -bios seabios -boot c -bootdisk scsi0 -cicustom user=cloudinit:snippets/cloud_init_ub2204-example.yaml -cores 4 -cpu kvm64 -hotplug network,disk,memory,cpu -ipconfig0 ip=10.16.16.20/24,gw=10.16.16.254 -kvm 1 -memory 12288 -name example-work -nameserver 10.88.88.126 -net0 virtio=DA:C3:B5:CA:07:8C,bridge=vmbr1 -numa 1 -onboot 0 -scsi0 local-lvm:vm-108-cloudinit,size=100G -scsihw virtio-scsi-pci -searchdomain domain.com -serial0 socket -sockets 1 -tablet 1
TASK ERROR: scsi0 - cloud-init drive is already attached at 'ide0'
```
which I didn't get before and the first thing I'd like to understand is how this error can be interpreted. This doesn't make a lot of sense to me. Is it trying to attach the cloud-init drive to scsi0, but it cannot, because it'a already attached at ide0? scsi0 is the hard disk itself, so I'm not sure what this is getting at.
I'm using Proxmox 7.4-3 (terraform 1.5.3 with proxmox plugin telmate/proxmox 2.9.14)
```
update VM 108: -agent 1 -bios seabios -boot c -bootdisk scsi0 -cicustom user=cloudinit:snippets/cloud_init_ub2204-example.yaml -cores 4 -cpu kvm64 -hotplug network,disk,memory,cpu -ipconfig0 ip=10.16.16.20/24,gw=10.16.16.254 -kvm 1 -memory 12288 -name example-work -nameserver 10.88.88.126 -net0 virtio=DA:C3:B5:CA:07:8C,bridge=vmbr1 -numa 1 -onboot 0 -scsi0 local-lvm:vm-108-cloudinit,size=100G -scsihw virtio-scsi-pci -searchdomain domain.com -serial0 socket -sockets 1 -tablet 1
TASK ERROR: scsi0 - cloud-init drive is already attached at 'ide0'
```
which I didn't get before and the first thing I'd like to understand is how this error can be interpreted. This doesn't make a lot of sense to me. Is it trying to attach the cloud-init drive to scsi0, but it cannot, because it'a already attached at ide0? scsi0 is the hard disk itself, so I'm not sure what this is getting at.
I'm using Proxmox 7.4-3 (terraform 1.5.3 with proxmox plugin telmate/proxmox 2.9.14)