AttributeError: property 'state' of 'ProxmoxACL' object has no setter
Hi, first time i'm playing around with your collection/role trying to setup a fresh proxmox8 host. The 'Create ACL.' example from the docs did not work for me. (https://jlecomte.gitlab.io/ansible/ansible-proxmox-collection/modules/julien_lecomte.proxmox.acl_module.html)
Not sure if this is a python error or something in my code? Or maybe due to changes in proxmox 8 beta?
Last row from error trace (see below for full) /julien_lecomte/proxmox/plugins/modules/acl.py", line 105, in _on_load\nAttributeError: property 'state' of 'ProxmoxACL' object has no setter\n",
tasks from main.yml
tasks: - name: Create group 'admins' julien_lecomte.proxmox.group: name: 'admins' become: true - name: Create user 'bahoop' and add to group 'admins' julien_lecomte.proxmox.user: name: 'bahoop@pam' groups: [ "admins" ] become: true - name: Create ACL. julien_lecomte.proxmox.acl: path: "/" roles: [ "PVEAdmin" ] groups: [ "admins" ] become: trueansible [core 2.14.5], python version = 3.11.3 on macos ventura (13.4) proxmox host is a clean 8 beta installation