Hello, I'm trying to update or create an aggregate interface or subinterface with a zone_name parameter. Something like: --- - hosts: all name: CONFIGURE NEW AGGREGATE AND SUBINTERFACE IN EXISTING ZONE connection: local gather_facts: False collections: - paloaltonetworks.panos vars: ansible_python_interpreter: /var/lib/awx/venv/ansible/bin/python3 tasks: - name: Configure aggregate interface panos_aggregate_interface: provider: '{{ provider }}' template: "test" if_name: ae2 zone_name: Access Whether the interface exists or not, whether the zone already exists or not, whether the interface is already in the target zone or not, I get the following: The full traceback is: File "/tmp/ansible_panos_aggregate_interface_payload_m7t77c6e/ansible_panos_aggregate_interface_payload.zip/ansible_collections/paloaltonetworks/panos/plugins/modules/panos_aggregate_interface.py", line 296, in main File "/var/lib/awx/venv/ansible/lib/python3.6/site-packages/panos/network.py", line 1063, in set_zone zone_name, mode, refresh, update, running_config, return_type File "/var/lib/awx/venv/ansible/lib/python3.6/site-packages/panos/network.py", line 393, in set_zone mode=mode, File "/var/lib/awx/venv/ansible/lib/python3.6/site-packages/panos/base.py", line 1639, in _set_reference obj.update(reference_var) File "/var/lib/awx/venv/ansible/lib/python3.6/site-packages/panos/base.py", line 702, in update retry_on_peer=self.HA_SYNC, File "/var/lib/awx/venv/ansible/lib/python3.6/site-packages/panos/base.py", line 3682, in method raise the_exception and "msg": "Failed setref: layer3 'ae2' is not a valid reference" If I try something similar with panos_l3_subinterface, I get the same error (slightly different line number references in the calling code). Environment is paloaltonetworks.panos collection 2.9.0 pan-os-python 1.6.0 pandevice 0.14.0 ansible 2.9.11 Python 3.6.8
... View more