Packer and Proxmox 8

Does packer support Proxmox 8?

I’m getting this error when using my hcl files that used to work with Proxmox 7.x

    ubuntu-VM.proxmox-iso.ubuntu-VM: Done copying paths from CD_dirs
2024/02/19 19:38:58 packer-plugin-proxmox_v1.1.7_x5.0_linux_amd64 plugin: 2024/02/19 19:38:58 No URLs were provided to Step Download. Continuing...
==> ubuntu-VM.proxmox-iso.ubuntu-VM: 400 Parameter verification failed.
==> ubuntu-VM.proxmox-iso.ubuntu-VM: delete volume failed: 501 Method 'DELETE /nodes/<sensitive>/storage/local/content/' not implemented
2024/02/19 19:38:59 packer-plugin-proxmox_v1.1.7_x5.0_linux_amd64 plugin: 2024/02/19 19:38:59 Deleting CD disk: /tmp/packer3852300644.iso
2024/02/19 19:38:59 [INFO] (telemetry) ending proxmox-iso.ubuntu-VM
==> Wait completed after 201 milliseconds 255 microseconds
2024/02/19 19:38:59 machine readable: error-count []string{"1"}
==> Some builds didn't complete successfully and had errors:
Build 'ubuntu-VM.proxmox-iso.ubuntu-VM' errored after 200 milliseconds 876 microseconds: 501 Method 'DELETE /nodes/<sensitive>/storage/local/content/' not implemented

Fix:

Considering:

source "proxmox-iso" "ubuntu-VM" {
  ...
  node                      = var.node
 ...
}

in variables.hcl, the value for node didn’t work when using fqdn, it was necessary to use:

node = "myserver"

not
node = "myserver.mydomain"