- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
06-20-2025 12:42 AM
Ansible playbook snippet:
------------------------------------------------------------
collections:
paloaltonetworks.panos
vars:
panorama_provider:
ip_address: {{ panorama_fqdn }}
username: {{ username }}
password: {{ password }}
tasks:
name: Commit Config
panos_commit_panorama:
provider: {% raw %}"{{ panorama_provider }}"{% endraw %}
sync: true
admins: ["{{ username }}"]
------------------------------------------------------------
Expectation:
Should only commit changes made by admins specified in the list ({{ username }} in this case).
Current behavior:
Commits all pending changes made by all users.
When I perform the same steps manually using the web portal, it works as expected. I have observed this behavior only when using the Ansible playbook.
Panorama software version: 11.1.6
paloaltonetworks.panos version: 2.13.1
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!