<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Ansible role for PANOS upgrade in Automation/API Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/ansible-role-for-panos-upgrade/m-p/524964#M3279</link>
    <description>&lt;P&gt;Hi All ,&lt;BR /&gt;&lt;BR /&gt;Do we have any role for PANOS upgrade in collection :&amp;nbsp;&lt;/P&gt;&lt;P&gt;paloaltonetworks.panos&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 23 Dec 2022 11:35:02 GMT</pubDate>
    <dc:creator>DeepakVerma</dc:creator>
    <dc:date>2022-12-23T11:35:02Z</dc:date>
    <item>
      <title>Ansible role for PANOS upgrade</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/ansible-role-for-panos-upgrade/m-p/524964#M3279</link>
      <description>&lt;P&gt;Hi All ,&lt;BR /&gt;&lt;BR /&gt;Do we have any role for PANOS upgrade in collection :&amp;nbsp;&lt;/P&gt;&lt;P&gt;paloaltonetworks.panos&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Dec 2022 11:35:02 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/ansible-role-for-panos-upgrade/m-p/524964#M3279</guid>
      <dc:creator>DeepakVerma</dc:creator>
      <dc:date>2022-12-23T11:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Ansible role for PANOS upgrade</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/ansible-role-for-panos-upgrade/m-p/524973#M3281</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/190921"&gt;@DeepakVerma&lt;/a&gt;, there are no roles today.&lt;/P&gt;
&lt;P&gt;Can you share what kind of roles would have benefit for you? Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Dec 2022 12:32:48 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/ansible-role-for-panos-upgrade/m-p/524973#M3281</guid>
      <dc:creator>JimmyHolland</dc:creator>
      <dc:date>2022-12-23T12:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Ansible role for PANOS upgrade</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/ansible-role-for-panos-upgrade/m-p/524978#M3282</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/4294"&gt;@JimmyHolland&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks for the confirmation.&amp;nbsp;&lt;BR /&gt;Basically we are planning to automate our daily operational works/upgrade etc , so was checking if we have any role already present which we can explorer and use if it fit to our requirements.&amp;nbsp;&lt;BR /&gt;Just one more question , In Ansible is there way we can make sure to login to Active firewall&amp;nbsp; ?&lt;BR /&gt;Like in python we can use&amp;nbsp;&lt;SPAN&gt;fw.refresh_ha_active() which make sure to login to active firewall .&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;Any feedback/suggestions on this. ?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Dec 2022 14:16:44 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/ansible-role-for-panos-upgrade/m-p/524978#M3282</guid>
      <dc:creator>DeepakVerma</dc:creator>
      <dc:date>2022-12-23T14:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Ansible role for PANOS upgrade</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/ansible-role-for-panos-upgrade/m-p/524980#M3283</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/190921"&gt;@DeepakVerma&lt;/a&gt;, the collection includes over 100 modules so hopefully you are able to achieve you objectives with them. If you have suggestions for roles you would like to see, please let us know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On the active firewall, you can use panos_facts to get the HA state of a device if you need to use this for some reason, here is a snippet showing how to get three different types of HA information, with example output:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;  tasks:
    - name: Gather facts for device
      paloaltonetworks.panos.panos_facts:
        provider: "{{ device }}"

    - name: Display HA information
      ansible.builtin.debug:
        msg:
          - "HA Enabled: {{ ansible_facts['net_ha_enabled'] }}"
          - "HA Type: {{ ansible_facts['net_ha_localmode'] }}"
          - "HA Status: {{ ansible_facts['net_ha_localstate'] }}"&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ok: [lab] =&amp;gt; {
    "msg": [
        "HA Enabled: True",
        "HA Type: Active-Passive",
        "HA Status: active",
    ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Dec 2022 14:36:21 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/ansible-role-for-panos-upgrade/m-p/524980#M3283</guid>
      <dc:creator>JimmyHolland</dc:creator>
      <dc:date>2022-12-23T14:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Ansible role for PANOS upgrade</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/ansible-role-for-panos-upgrade/m-p/524985#M3284</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/4294"&gt;@JimmyHolland&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thanks for your help .&lt;BR /&gt;&lt;BR /&gt;Sure , will check and reach out to you for any query related to role or any module.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;</description>
      <pubDate>Fri, 23 Dec 2022 15:53:26 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/ansible-role-for-panos-upgrade/m-p/524985#M3284</guid>
      <dc:creator>DeepakVerma</dc:creator>
      <dc:date>2022-12-23T15:53:26Z</dc:date>
    </item>
  </channel>
</rss>

