├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation_problem.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── .travis.yml.sample ├── LICENSE ├── README.md ├── README_role.md ├── SUPPORT.md ├── ansible-playbooks ├── README.md ├── ansible-pull │ ├── .gitignore │ ├── RUN.txt │ ├── local.yml │ └── vars-sample.yml ├── aws │ ├── VM-Series-BYOL-w-webserver.json │ ├── VM-Series-BYOLv7.json │ ├── VM-Series-BYOLv8.json │ ├── VM-Series-BYOLv9.json │ ├── provision_fw_w_srule.yml │ ├── provision_fw_w_webserver.yml │ └── vars-sample.yml ├── basic_plumbing │ ├── basic_networking_config.yml │ └── vars-sample.yml ├── custom │ └── hosts ├── one_click_multicloud │ ├── README.md │ ├── one_click_aws.yml │ └── one_click_azure.yml ├── pan_demos │ ├── aws_vm_series_config.yml │ ├── configure_interfaces_dns.yml │ ├── create_nat_rule.yml │ ├── create_security_policies.yml │ ├── create_service.yml │ ├── gittest.yml │ ├── panorama_commit.py │ ├── panorama_demo.yml │ ├── setup_passwd.yml │ ├── vars-sample.yml │ └── vars.yml ├── roles │ └── requirements.yml ├── se_summit_2018 │ ├── aws_vm_series_config.yml │ ├── configure_interfaces_dns.yml │ ├── create_nat_rule.yml │ ├── create_security_policies.yml │ ├── create_service.yml │ ├── setup_passwd.yml │ ├── vars-sample.yml │ └── vars.yml ├── srules │ ├── playbook_set_complex_srule.yml │ ├── playbook_set_srule.yml │ ├── test_do_not_use.yml │ └── vars-sample.yml ├── terraform_integration │ ├── aws_vm_series_config.yml │ ├── vars-sample.yml │ └── vars.yml └── webinar_sample │ ├── .gitignore │ ├── aws_webinar_sample.yml │ └── azure_webinar_sample.yml ├── defaults └── main.yml ├── docs ├── .gitignore ├── 404.html ├── Gemfile ├── Gemfile.lock ├── HOWTOBUILDDOC.md ├── Makefile ├── Makefile.old ├── _config.yml ├── _includes │ ├── analytics.html │ └── head.html ├── _static │ ├── css │ │ └── partial_theme.css │ └── emptyfolder ├── authors.md ├── conf.py ├── contributing.md ├── examples.md ├── hacking │ ├── module_formatter.py │ └── templates │ │ ├── md.j2 │ │ ├── playbooks_directives.rst.j2 │ │ └── rst.j2 ├── history.md ├── images │ └── biohazard.png ├── index.md ├── index.rst ├── jekyll.start ├── license.rst ├── make.bat ├── mkmodref.py ├── modules │ ├── index.rst │ ├── panos_address_group_module.rst │ ├── panos_address_object_module.rst │ ├── panos_admin_module.rst │ ├── panos_administrator_module.rst │ ├── panos_admpwd_module.rst │ ├── panos_aggregate_interface_module.rst │ ├── panos_api_key_module.rst │ ├── panos_bgp_aggregate_module.rst │ ├── panos_bgp_auth_module.rst │ ├── panos_bgp_conditional_advertisement_module.rst │ ├── panos_bgp_dampening_module.rst │ ├── panos_bgp_module.rst │ ├── panos_bgp_peer_group_module.rst │ ├── panos_bgp_peer_module.rst │ ├── panos_bgp_policy_filter_module.rst │ ├── panos_bgp_policy_rule_module.rst │ ├── panos_bgp_redistribute_module.rst │ ├── panos_cert_gen_ssh_module.rst │ ├── panos_check_module.rst │ ├── panos_commit_module.rst │ ├── panos_dag_module.rst │ ├── panos_dag_tags_module.rst │ ├── panos_email_profile_module.rst │ ├── panos_email_server_module.rst │ ├── panos_facts_module.rst │ ├── panos_gre_tunnel_module.rst │ ├── panos_ha_module.rst │ ├── panos_http_profile_header_module.rst │ ├── panos_http_profile_module.rst │ ├── panos_http_profile_param_module.rst │ ├── panos_http_server_module.rst │ ├── panos_ike_crypto_profile_module.rst │ ├── panos_ike_gateway_module.rst │ ├── panos_import_module.rst │ ├── panos_interface_module.rst │ ├── panos_ipsec_ipv4_proxyid_module.rst │ ├── panos_ipsec_profile_module.rst │ ├── panos_ipsec_tunnel_module.rst │ ├── panos_l2_subinterface_module.rst │ ├── panos_l3_subinterface_module.rst │ ├── panos_lic_module.rst │ ├── panos_loadcfg_module.rst │ ├── panos_log_forwarding_profile_match_list_action_module.rst │ ├── panos_log_forwarding_profile_match_list_module.rst │ ├── panos_log_forwarding_profile_module.rst │ ├── panos_loopback_interface_module.rst │ ├── panos_management_profile_module.rst │ ├── panos_match_rule_module.rst │ ├── panos_mgtconfig_module.rst │ ├── panos_nat_rule_facts_module.rst │ ├── panos_nat_rule_module.rst │ ├── panos_object_facts_module.rst │ ├── panos_object_module.rst │ ├── panos_op_module.rst │ ├── panos_pbf_rule_module.rst │ ├── panos_pg_module.rst │ ├── panos_query_rules_module.rst │ ├── panos_redistribution_module.rst │ ├── panos_registered_ip_facts_module.rst │ ├── panos_registered_ip_module.rst │ ├── panos_restart_module.rst │ ├── panos_sag_module.rst │ ├── panos_security_rule_facts_module.rst │ ├── panos_security_rule_module.rst │ ├── panos_service_group_module.rst │ ├── panos_service_object_module.rst │ ├── panos_snmp_profile_module.rst │ ├── panos_snmp_v2c_server_module.rst │ ├── panos_snmp_v3_server_module.rst │ ├── panos_software_module.rst │ ├── panos_static_route_module.rst │ ├── panos_syslog_profile_module.rst │ ├── panos_syslog_server_module.rst │ ├── panos_tag_object_module.rst │ ├── panos_tunnel_module.rst │ ├── panos_type_cmd_module.rst │ ├── panos_userid_module.rst │ ├── panos_virtual_router_facts_module.rst │ ├── panos_virtual_router_module.rst │ ├── panos_virtual_wire_module.rst │ ├── panos_vlan_interface_module.rst │ ├── panos_vlan_module.rst │ ├── panos_zone_facts_module.rst │ └── panos_zone_module.rst ├── requirements.txt └── tidyrst.py ├── examples ├── RUNNING ├── fw_address_group.yml ├── fw_address_object.yml ├── fw_admin.yml ├── fw_administrator_absent.yml ├── fw_administrator_present.yml ├── fw_adminpwd.yml ├── fw_api_key.yml ├── fw_bgp.yml ├── fw_bgp_aggregate.yml ├── fw_bgp_auth.yml ├── fw_bgp_conditional_advertisement.yml ├── fw_bgp_dampening.yml ├── fw_bgp_peer.yml ├── fw_bgp_peer_group.yml ├── fw_bgp_policy_filter.yml ├── fw_bgp_policy_rule.yml ├── fw_bgp_redistribute.yml ├── fw_build_all.yml ├── fw_cert_gen_ssh.yml ├── fw_check.yml ├── fw_commit.yml ├── fw_content.yml ├── fw_dag.yml ├── fw_ha.yml ├── fw_ike_crypto_profile_add.yml ├── fw_ike_crypto_profile_delete.yml ├── fw_ike_gateway_add.yml ├── fw_ike_gateway_delete.yml ├── fw_import.yml ├── fw_interface.yml ├── fw_ipsec_crypto_profile_add.yml ├── fw_ipsec_crypto_profile_delete.yml ├── fw_ipsec_tunnel_add.yml ├── fw_ipsec_tunnel_delete.yml ├── fw_loadcfg.yml ├── fw_mgtconfig.yml ├── fw_mgtconfig2.yml ├── fw_natrule_add.yml ├── fw_natrule_delete.yml ├── fw_natrule_find.yml ├── fw_natrule_update.yml ├── fw_object_facts.yml ├── fw_objects_add.yml ├── fw_objects_add2.yml ├── fw_objects_delete.yml ├── fw_objects_find.yml ├── fw_objects_update.yml ├── fw_op.yml ├── fw_op_loop.yml ├── fw_pg.yml ├── fw_redistribution.yml ├── fw_registered_ip.yml ├── fw_registered_ip_facts.yml ├── fw_restart.yml ├── fw_rules_match.yml ├── fw_rules_query.yml ├── fw_sag.yml ├── fw_secrule_add.yml ├── fw_secrule_add_w_position.yml ├── fw_secrule_delete.yml ├── fw_secrule_find.yml ├── fw_secrule_update.yml ├── fw_secrule_update_w_position.yml ├── fw_service_group.yml ├── fw_service_object.yml ├── fw_software.yml ├── fw_static_route_add.yml ├── fw_tag_object.yml ├── fw_tunnel.yml ├── fw_userid.yml ├── fw_virtual_router.yml ├── fw_vpn_add.yml ├── fw_vpn_delete.yml ├── fw_vwire.yml ├── inventory-virt.ini ├── inventory.ini ├── op_sample.yml ├── pano_administrator_absent.yml ├── pano_administrator_present.yml ├── pano_build_all.yml ├── pano_commit.yml ├── pano_natrule_add.yml ├── pano_natrule_delete.yml ├── pano_natrule_find.yml ├── pano_natrule_update.yml ├── pano_objects_add.yml ├── pano_objects_delete.yml ├── pano_objects_find.yml ├── pano_objects_update.yml ├── pano_rules_query.yml ├── pano_secrule_add.yml ├── pano_secrule_delete.yml ├── pano_secrule_find.yml ├── pano_secrule_update.yml ├── panos_restart.yml ├── sample.yml └── vars │ ├── README │ ├── firewall-secrets.yml.bak │ └── panorama-secrets.yml.bak ├── handlers └── main.yml ├── library ├── __init__.py ├── panos_address_group.py ├── panos_address_object.py ├── panos_admin.py ├── panos_administrator.py ├── panos_admpwd.py ├── panos_aggregate_interface.py ├── panos_api_key.py ├── panos_bgp.py ├── panos_bgp_aggregate.py ├── panos_bgp_auth.py ├── panos_bgp_conditional_advertisement.py ├── panos_bgp_dampening.py ├── panos_bgp_peer.py ├── panos_bgp_peer_group.py ├── panos_bgp_policy_filter.py ├── panos_bgp_policy_rule.py ├── panos_bgp_redistribute.py ├── panos_cert_gen_ssh.py ├── panos_check.py ├── panos_commit.py ├── panos_dag.py ├── panos_dag_tags.py ├── panos_email_profile.py ├── panos_email_server.py ├── panos_facts.py ├── panos_gre_tunnel.py ├── panos_ha.py ├── panos_http_profile.py ├── panos_http_profile_header.py ├── panos_http_profile_param.py ├── panos_http_server.py ├── panos_ike_crypto_profile.py ├── panos_ike_gateway.py ├── panos_import.py ├── panos_interface.py ├── panos_ipsec_ipv4_proxyid.py ├── panos_ipsec_profile.py ├── panos_ipsec_tunnel.py ├── panos_l2_subinterface.py ├── panos_l3_subinterface.py ├── panos_lic.py ├── panos_loadcfg.py ├── panos_log_forwarding_profile.py ├── panos_log_forwarding_profile_match_list.py ├── panos_log_forwarding_profile_match_list_action.py ├── panos_loopback_interface.py ├── panos_management_profile.py ├── panos_match_rule.py ├── panos_mgtconfig.py ├── panos_nat_rule.py ├── panos_nat_rule_facts.py ├── panos_object.py ├── panos_object_facts.py ├── panos_op.py ├── panos_pbf_rule.py ├── panos_pg.py ├── panos_query_rules.py ├── panos_redistribution.py ├── panos_registered_ip.py ├── panos_registered_ip_facts.py ├── panos_restart.py ├── panos_sag.py ├── panos_security_rule.py ├── panos_security_rule_facts.py ├── panos_service_group.py ├── panos_service_object.py ├── panos_snmp_profile.py ├── panos_snmp_v2c_server.py ├── panos_snmp_v3_server.py ├── panos_software.py ├── panos_static_route.py ├── panos_syslog_profile.py ├── panos_syslog_server.py ├── panos_tag_object.py ├── panos_tunnel.py ├── panos_type_cmd.py ├── panos_userid.py ├── panos_virtual_router.py ├── panos_virtual_router_facts.py ├── panos_virtual_wire.py ├── panos_vlan.py ├── panos_vlan_interface.py ├── panos_zone.py └── panos_zone_facts.py ├── meta └── main.yml ├── module_utils ├── __init__.py └── network │ ├── __init__.py │ └── panos │ ├── __init__.py │ └── panos.py ├── readthedocs.yml ├── requirements.txt ├── samples └── running-config_sample.xml ├── setup.py ├── tasks └── main.yml ├── tests ├── inventory └── test.yml └── vars └── main.yml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/.github/ISSUE_TEMPLATE/documentation_problem.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/.travis.yml.sample -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/README.md -------------------------------------------------------------------------------- /README_role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/README_role.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /ansible-playbooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/README.md -------------------------------------------------------------------------------- /ansible-playbooks/ansible-pull/.gitignore: -------------------------------------------------------------------------------- 1 | *.retry 2 | -------------------------------------------------------------------------------- /ansible-playbooks/ansible-pull/RUN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/ansible-pull/RUN.txt -------------------------------------------------------------------------------- /ansible-playbooks/ansible-pull/local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/ansible-pull/local.yml -------------------------------------------------------------------------------- /ansible-playbooks/ansible-pull/vars-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/ansible-pull/vars-sample.yml -------------------------------------------------------------------------------- /ansible-playbooks/aws/VM-Series-BYOL-w-webserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/aws/VM-Series-BYOL-w-webserver.json -------------------------------------------------------------------------------- /ansible-playbooks/aws/VM-Series-BYOLv7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/aws/VM-Series-BYOLv7.json -------------------------------------------------------------------------------- /ansible-playbooks/aws/VM-Series-BYOLv8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/aws/VM-Series-BYOLv8.json -------------------------------------------------------------------------------- /ansible-playbooks/aws/VM-Series-BYOLv9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/aws/VM-Series-BYOLv9.json -------------------------------------------------------------------------------- /ansible-playbooks/aws/provision_fw_w_srule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/aws/provision_fw_w_srule.yml -------------------------------------------------------------------------------- /ansible-playbooks/aws/provision_fw_w_webserver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/aws/provision_fw_w_webserver.yml -------------------------------------------------------------------------------- /ansible-playbooks/aws/vars-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/aws/vars-sample.yml -------------------------------------------------------------------------------- /ansible-playbooks/basic_plumbing/basic_networking_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/basic_plumbing/basic_networking_config.yml -------------------------------------------------------------------------------- /ansible-playbooks/basic_plumbing/vars-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/basic_plumbing/vars-sample.yml -------------------------------------------------------------------------------- /ansible-playbooks/custom/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/custom/hosts -------------------------------------------------------------------------------- /ansible-playbooks/one_click_multicloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/one_click_multicloud/README.md -------------------------------------------------------------------------------- /ansible-playbooks/one_click_multicloud/one_click_aws.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/one_click_multicloud/one_click_aws.yml -------------------------------------------------------------------------------- /ansible-playbooks/one_click_multicloud/one_click_azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/one_click_multicloud/one_click_azure.yml -------------------------------------------------------------------------------- /ansible-playbooks/pan_demos/aws_vm_series_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/pan_demos/aws_vm_series_config.yml -------------------------------------------------------------------------------- /ansible-playbooks/pan_demos/configure_interfaces_dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/pan_demos/configure_interfaces_dns.yml -------------------------------------------------------------------------------- /ansible-playbooks/pan_demos/create_nat_rule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/pan_demos/create_nat_rule.yml -------------------------------------------------------------------------------- /ansible-playbooks/pan_demos/create_security_policies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/pan_demos/create_security_policies.yml -------------------------------------------------------------------------------- /ansible-playbooks/pan_demos/create_service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/pan_demos/create_service.yml -------------------------------------------------------------------------------- /ansible-playbooks/pan_demos/gittest.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible-playbooks/pan_demos/panorama_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/pan_demos/panorama_commit.py -------------------------------------------------------------------------------- /ansible-playbooks/pan_demos/panorama_demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/pan_demos/panorama_demo.yml -------------------------------------------------------------------------------- /ansible-playbooks/pan_demos/setup_passwd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/pan_demos/setup_passwd.yml -------------------------------------------------------------------------------- /ansible-playbooks/pan_demos/vars-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/pan_demos/vars-sample.yml -------------------------------------------------------------------------------- /ansible-playbooks/pan_demos/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/pan_demos/vars.yml -------------------------------------------------------------------------------- /ansible-playbooks/roles/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/roles/requirements.yml -------------------------------------------------------------------------------- /ansible-playbooks/se_summit_2018/aws_vm_series_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/se_summit_2018/aws_vm_series_config.yml -------------------------------------------------------------------------------- /ansible-playbooks/se_summit_2018/configure_interfaces_dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/se_summit_2018/configure_interfaces_dns.yml -------------------------------------------------------------------------------- /ansible-playbooks/se_summit_2018/create_nat_rule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/se_summit_2018/create_nat_rule.yml -------------------------------------------------------------------------------- /ansible-playbooks/se_summit_2018/create_security_policies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/se_summit_2018/create_security_policies.yml -------------------------------------------------------------------------------- /ansible-playbooks/se_summit_2018/create_service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/se_summit_2018/create_service.yml -------------------------------------------------------------------------------- /ansible-playbooks/se_summit_2018/setup_passwd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/se_summit_2018/setup_passwd.yml -------------------------------------------------------------------------------- /ansible-playbooks/se_summit_2018/vars-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/se_summit_2018/vars-sample.yml -------------------------------------------------------------------------------- /ansible-playbooks/se_summit_2018/vars.yml: -------------------------------------------------------------------------------- 1 | vars-sample.yml -------------------------------------------------------------------------------- /ansible-playbooks/srules/playbook_set_complex_srule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/srules/playbook_set_complex_srule.yml -------------------------------------------------------------------------------- /ansible-playbooks/srules/playbook_set_srule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/srules/playbook_set_srule.yml -------------------------------------------------------------------------------- /ansible-playbooks/srules/test_do_not_use.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/srules/test_do_not_use.yml -------------------------------------------------------------------------------- /ansible-playbooks/srules/vars-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/srules/vars-sample.yml -------------------------------------------------------------------------------- /ansible-playbooks/terraform_integration/aws_vm_series_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/terraform_integration/aws_vm_series_config.yml -------------------------------------------------------------------------------- /ansible-playbooks/terraform_integration/vars-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/terraform_integration/vars-sample.yml -------------------------------------------------------------------------------- /ansible-playbooks/terraform_integration/vars.yml: -------------------------------------------------------------------------------- 1 | vars-sample.yml -------------------------------------------------------------------------------- /ansible-playbooks/webinar_sample/.gitignore: -------------------------------------------------------------------------------- 1 | vars-*.yml 2 | -------------------------------------------------------------------------------- /ansible-playbooks/webinar_sample/aws_webinar_sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/webinar_sample/aws_webinar_sample.yml -------------------------------------------------------------------------------- /ansible-playbooks/webinar_sample/azure_webinar_sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/ansible-playbooks/webinar_sample/azure_webinar_sample.yml -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for paloaltonetworks -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/HOWTOBUILDDOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/HOWTOBUILDDOC.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Makefile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/Makefile.old -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/_includes/analytics.html -------------------------------------------------------------------------------- /docs/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/_includes/head.html -------------------------------------------------------------------------------- /docs/_static/css/partial_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/_static/css/partial_theme.css -------------------------------------------------------------------------------- /docs/_static/emptyfolder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/authors.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/hacking/module_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/hacking/module_formatter.py -------------------------------------------------------------------------------- /docs/hacking/templates/md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/hacking/templates/md.j2 -------------------------------------------------------------------------------- /docs/hacking/templates/playbooks_directives.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/hacking/templates/playbooks_directives.rst.j2 -------------------------------------------------------------------------------- /docs/hacking/templates/rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/hacking/templates/rst.j2 -------------------------------------------------------------------------------- /docs/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/history.md -------------------------------------------------------------------------------- /docs/images/biohazard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/images/biohazard.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/jekyll.start: -------------------------------------------------------------------------------- 1 | bundle exec jekyll serve 2 | -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../LICENSE 2 | -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/mkmodref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/mkmodref.py -------------------------------------------------------------------------------- /docs/modules/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/index.rst -------------------------------------------------------------------------------- /docs/modules/panos_address_group_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_address_group_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_address_object_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_address_object_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_admin_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_admin_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_administrator_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_administrator_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_admpwd_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_admpwd_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_aggregate_interface_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_aggregate_interface_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_api_key_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_api_key_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_bgp_aggregate_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_bgp_aggregate_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_bgp_auth_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_bgp_auth_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_bgp_conditional_advertisement_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_bgp_conditional_advertisement_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_bgp_dampening_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_bgp_dampening_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_bgp_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_bgp_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_bgp_peer_group_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_bgp_peer_group_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_bgp_peer_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_bgp_peer_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_bgp_policy_filter_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_bgp_policy_filter_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_bgp_policy_rule_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_bgp_policy_rule_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_bgp_redistribute_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_bgp_redistribute_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_cert_gen_ssh_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_cert_gen_ssh_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_check_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_check_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_commit_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_commit_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_dag_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_dag_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_dag_tags_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_dag_tags_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_email_profile_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_email_profile_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_email_server_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_email_server_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_facts_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_facts_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_gre_tunnel_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_gre_tunnel_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_ha_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_ha_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_http_profile_header_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_http_profile_header_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_http_profile_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_http_profile_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_http_profile_param_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_http_profile_param_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_http_server_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_http_server_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_ike_crypto_profile_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_ike_crypto_profile_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_ike_gateway_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_ike_gateway_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_import_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_import_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_interface_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_interface_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_ipsec_ipv4_proxyid_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_ipsec_ipv4_proxyid_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_ipsec_profile_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_ipsec_profile_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_ipsec_tunnel_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_ipsec_tunnel_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_l2_subinterface_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_l2_subinterface_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_l3_subinterface_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_l3_subinterface_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_lic_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_lic_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_loadcfg_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_loadcfg_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_log_forwarding_profile_match_list_action_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_log_forwarding_profile_match_list_action_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_log_forwarding_profile_match_list_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_log_forwarding_profile_match_list_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_log_forwarding_profile_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_log_forwarding_profile_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_loopback_interface_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_loopback_interface_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_management_profile_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_management_profile_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_match_rule_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_match_rule_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_mgtconfig_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_mgtconfig_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_nat_rule_facts_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_nat_rule_facts_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_nat_rule_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_nat_rule_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_object_facts_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_object_facts_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_object_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_object_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_op_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_op_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_pbf_rule_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_pbf_rule_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_pg_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_pg_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_query_rules_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_query_rules_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_redistribution_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_redistribution_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_registered_ip_facts_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_registered_ip_facts_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_registered_ip_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_registered_ip_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_restart_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_restart_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_sag_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_sag_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_security_rule_facts_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_security_rule_facts_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_security_rule_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_security_rule_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_service_group_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_service_group_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_service_object_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_service_object_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_snmp_profile_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_snmp_profile_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_snmp_v2c_server_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_snmp_v2c_server_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_snmp_v3_server_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_snmp_v3_server_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_software_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_software_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_static_route_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_static_route_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_syslog_profile_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_syslog_profile_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_syslog_server_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_syslog_server_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_tag_object_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_tag_object_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_tunnel_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_tunnel_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_type_cmd_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_type_cmd_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_userid_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_userid_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_virtual_router_facts_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_virtual_router_facts_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_virtual_router_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_virtual_router_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_virtual_wire_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_virtual_wire_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_vlan_interface_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_vlan_interface_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_vlan_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_vlan_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_zone_facts_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_zone_facts_module.rst -------------------------------------------------------------------------------- /docs/modules/panos_zone_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/modules/panos_zone_module.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=2.0.1 2 | -------------------------------------------------------------------------------- /docs/tidyrst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/docs/tidyrst.py -------------------------------------------------------------------------------- /examples/RUNNING: -------------------------------------------------------------------------------- 1 | ansible-playbook -i ./inventory.ini 2 | 3 | -------------------------------------------------------------------------------- /examples/fw_address_group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_address_group.yml -------------------------------------------------------------------------------- /examples/fw_address_object.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_address_object.yml -------------------------------------------------------------------------------- /examples/fw_admin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_admin.yml -------------------------------------------------------------------------------- /examples/fw_administrator_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_administrator_absent.yml -------------------------------------------------------------------------------- /examples/fw_administrator_present.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_administrator_present.yml -------------------------------------------------------------------------------- /examples/fw_adminpwd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_adminpwd.yml -------------------------------------------------------------------------------- /examples/fw_api_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_api_key.yml -------------------------------------------------------------------------------- /examples/fw_bgp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_bgp.yml -------------------------------------------------------------------------------- /examples/fw_bgp_aggregate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_bgp_aggregate.yml -------------------------------------------------------------------------------- /examples/fw_bgp_auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_bgp_auth.yml -------------------------------------------------------------------------------- /examples/fw_bgp_conditional_advertisement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_bgp_conditional_advertisement.yml -------------------------------------------------------------------------------- /examples/fw_bgp_dampening.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_bgp_dampening.yml -------------------------------------------------------------------------------- /examples/fw_bgp_peer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_bgp_peer.yml -------------------------------------------------------------------------------- /examples/fw_bgp_peer_group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_bgp_peer_group.yml -------------------------------------------------------------------------------- /examples/fw_bgp_policy_filter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_bgp_policy_filter.yml -------------------------------------------------------------------------------- /examples/fw_bgp_policy_rule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_bgp_policy_rule.yml -------------------------------------------------------------------------------- /examples/fw_bgp_redistribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_bgp_redistribute.yml -------------------------------------------------------------------------------- /examples/fw_build_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_build_all.yml -------------------------------------------------------------------------------- /examples/fw_cert_gen_ssh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_cert_gen_ssh.yml -------------------------------------------------------------------------------- /examples/fw_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_check.yml -------------------------------------------------------------------------------- /examples/fw_commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_commit.yml -------------------------------------------------------------------------------- /examples/fw_content.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_content.yml -------------------------------------------------------------------------------- /examples/fw_dag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_dag.yml -------------------------------------------------------------------------------- /examples/fw_ha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_ha.yml -------------------------------------------------------------------------------- /examples/fw_ike_crypto_profile_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_ike_crypto_profile_add.yml -------------------------------------------------------------------------------- /examples/fw_ike_crypto_profile_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_ike_crypto_profile_delete.yml -------------------------------------------------------------------------------- /examples/fw_ike_gateway_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_ike_gateway_add.yml -------------------------------------------------------------------------------- /examples/fw_ike_gateway_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_ike_gateway_delete.yml -------------------------------------------------------------------------------- /examples/fw_import.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_import.yml -------------------------------------------------------------------------------- /examples/fw_interface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_interface.yml -------------------------------------------------------------------------------- /examples/fw_ipsec_crypto_profile_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_ipsec_crypto_profile_add.yml -------------------------------------------------------------------------------- /examples/fw_ipsec_crypto_profile_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_ipsec_crypto_profile_delete.yml -------------------------------------------------------------------------------- /examples/fw_ipsec_tunnel_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_ipsec_tunnel_add.yml -------------------------------------------------------------------------------- /examples/fw_ipsec_tunnel_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_ipsec_tunnel_delete.yml -------------------------------------------------------------------------------- /examples/fw_loadcfg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_loadcfg.yml -------------------------------------------------------------------------------- /examples/fw_mgtconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_mgtconfig.yml -------------------------------------------------------------------------------- /examples/fw_mgtconfig2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_mgtconfig2.yml -------------------------------------------------------------------------------- /examples/fw_natrule_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_natrule_add.yml -------------------------------------------------------------------------------- /examples/fw_natrule_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_natrule_delete.yml -------------------------------------------------------------------------------- /examples/fw_natrule_find.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_natrule_find.yml -------------------------------------------------------------------------------- /examples/fw_natrule_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_natrule_update.yml -------------------------------------------------------------------------------- /examples/fw_object_facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_object_facts.yml -------------------------------------------------------------------------------- /examples/fw_objects_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_objects_add.yml -------------------------------------------------------------------------------- /examples/fw_objects_add2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_objects_add2.yml -------------------------------------------------------------------------------- /examples/fw_objects_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_objects_delete.yml -------------------------------------------------------------------------------- /examples/fw_objects_find.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_objects_find.yml -------------------------------------------------------------------------------- /examples/fw_objects_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_objects_update.yml -------------------------------------------------------------------------------- /examples/fw_op.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_op.yml -------------------------------------------------------------------------------- /examples/fw_op_loop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_op_loop.yml -------------------------------------------------------------------------------- /examples/fw_pg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_pg.yml -------------------------------------------------------------------------------- /examples/fw_redistribution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_redistribution.yml -------------------------------------------------------------------------------- /examples/fw_registered_ip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_registered_ip.yml -------------------------------------------------------------------------------- /examples/fw_registered_ip_facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_registered_ip_facts.yml -------------------------------------------------------------------------------- /examples/fw_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_restart.yml -------------------------------------------------------------------------------- /examples/fw_rules_match.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_rules_match.yml -------------------------------------------------------------------------------- /examples/fw_rules_query.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_rules_query.yml -------------------------------------------------------------------------------- /examples/fw_sag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_sag.yml -------------------------------------------------------------------------------- /examples/fw_secrule_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_secrule_add.yml -------------------------------------------------------------------------------- /examples/fw_secrule_add_w_position.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_secrule_add_w_position.yml -------------------------------------------------------------------------------- /examples/fw_secrule_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_secrule_delete.yml -------------------------------------------------------------------------------- /examples/fw_secrule_find.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_secrule_find.yml -------------------------------------------------------------------------------- /examples/fw_secrule_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_secrule_update.yml -------------------------------------------------------------------------------- /examples/fw_secrule_update_w_position.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_secrule_update_w_position.yml -------------------------------------------------------------------------------- /examples/fw_service_group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_service_group.yml -------------------------------------------------------------------------------- /examples/fw_service_object.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_service_object.yml -------------------------------------------------------------------------------- /examples/fw_software.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_software.yml -------------------------------------------------------------------------------- /examples/fw_static_route_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_static_route_add.yml -------------------------------------------------------------------------------- /examples/fw_tag_object.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_tag_object.yml -------------------------------------------------------------------------------- /examples/fw_tunnel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_tunnel.yml -------------------------------------------------------------------------------- /examples/fw_userid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_userid.yml -------------------------------------------------------------------------------- /examples/fw_virtual_router.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_virtual_router.yml -------------------------------------------------------------------------------- /examples/fw_vpn_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_vpn_add.yml -------------------------------------------------------------------------------- /examples/fw_vpn_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_vpn_delete.yml -------------------------------------------------------------------------------- /examples/fw_vwire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/fw_vwire.yml -------------------------------------------------------------------------------- /examples/inventory-virt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/inventory-virt.ini -------------------------------------------------------------------------------- /examples/inventory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/inventory.ini -------------------------------------------------------------------------------- /examples/op_sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/op_sample.yml -------------------------------------------------------------------------------- /examples/pano_administrator_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_administrator_absent.yml -------------------------------------------------------------------------------- /examples/pano_administrator_present.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_administrator_present.yml -------------------------------------------------------------------------------- /examples/pano_build_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_build_all.yml -------------------------------------------------------------------------------- /examples/pano_commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_commit.yml -------------------------------------------------------------------------------- /examples/pano_natrule_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_natrule_add.yml -------------------------------------------------------------------------------- /examples/pano_natrule_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_natrule_delete.yml -------------------------------------------------------------------------------- /examples/pano_natrule_find.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_natrule_find.yml -------------------------------------------------------------------------------- /examples/pano_natrule_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_natrule_update.yml -------------------------------------------------------------------------------- /examples/pano_objects_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_objects_add.yml -------------------------------------------------------------------------------- /examples/pano_objects_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_objects_delete.yml -------------------------------------------------------------------------------- /examples/pano_objects_find.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_objects_find.yml -------------------------------------------------------------------------------- /examples/pano_objects_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_objects_update.yml -------------------------------------------------------------------------------- /examples/pano_rules_query.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_rules_query.yml -------------------------------------------------------------------------------- /examples/pano_secrule_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_secrule_add.yml -------------------------------------------------------------------------------- /examples/pano_secrule_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_secrule_delete.yml -------------------------------------------------------------------------------- /examples/pano_secrule_find.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_secrule_find.yml -------------------------------------------------------------------------------- /examples/pano_secrule_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/pano_secrule_update.yml -------------------------------------------------------------------------------- /examples/panos_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/panos_restart.yml -------------------------------------------------------------------------------- /examples/sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/sample.yml -------------------------------------------------------------------------------- /examples/vars/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/examples/vars/README -------------------------------------------------------------------------------- /examples/vars/firewall-secrets.yml.bak: -------------------------------------------------------------------------------- 1 | username: 'admin' 2 | password: 'CHANGEME' 3 | 4 | -------------------------------------------------------------------------------- /examples/vars/panorama-secrets.yml.bak: -------------------------------------------------------------------------------- 1 | username: 'admin' 2 | password: 'CHANGEME' 3 | -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for paloaltonetworks -------------------------------------------------------------------------------- /library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/__init__.py -------------------------------------------------------------------------------- /library/panos_address_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_address_group.py -------------------------------------------------------------------------------- /library/panos_address_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_address_object.py -------------------------------------------------------------------------------- /library/panos_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_admin.py -------------------------------------------------------------------------------- /library/panos_administrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_administrator.py -------------------------------------------------------------------------------- /library/panos_admpwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_admpwd.py -------------------------------------------------------------------------------- /library/panos_aggregate_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_aggregate_interface.py -------------------------------------------------------------------------------- /library/panos_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_api_key.py -------------------------------------------------------------------------------- /library/panos_bgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_bgp.py -------------------------------------------------------------------------------- /library/panos_bgp_aggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_bgp_aggregate.py -------------------------------------------------------------------------------- /library/panos_bgp_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_bgp_auth.py -------------------------------------------------------------------------------- /library/panos_bgp_conditional_advertisement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_bgp_conditional_advertisement.py -------------------------------------------------------------------------------- /library/panos_bgp_dampening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_bgp_dampening.py -------------------------------------------------------------------------------- /library/panos_bgp_peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_bgp_peer.py -------------------------------------------------------------------------------- /library/panos_bgp_peer_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_bgp_peer_group.py -------------------------------------------------------------------------------- /library/panos_bgp_policy_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_bgp_policy_filter.py -------------------------------------------------------------------------------- /library/panos_bgp_policy_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_bgp_policy_rule.py -------------------------------------------------------------------------------- /library/panos_bgp_redistribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_bgp_redistribute.py -------------------------------------------------------------------------------- /library/panos_cert_gen_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_cert_gen_ssh.py -------------------------------------------------------------------------------- /library/panos_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_check.py -------------------------------------------------------------------------------- /library/panos_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_commit.py -------------------------------------------------------------------------------- /library/panos_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_dag.py -------------------------------------------------------------------------------- /library/panos_dag_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_dag_tags.py -------------------------------------------------------------------------------- /library/panos_email_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_email_profile.py -------------------------------------------------------------------------------- /library/panos_email_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_email_server.py -------------------------------------------------------------------------------- /library/panos_facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_facts.py -------------------------------------------------------------------------------- /library/panos_gre_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_gre_tunnel.py -------------------------------------------------------------------------------- /library/panos_ha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_ha.py -------------------------------------------------------------------------------- /library/panos_http_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_http_profile.py -------------------------------------------------------------------------------- /library/panos_http_profile_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_http_profile_header.py -------------------------------------------------------------------------------- /library/panos_http_profile_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_http_profile_param.py -------------------------------------------------------------------------------- /library/panos_http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_http_server.py -------------------------------------------------------------------------------- /library/panos_ike_crypto_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_ike_crypto_profile.py -------------------------------------------------------------------------------- /library/panos_ike_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_ike_gateway.py -------------------------------------------------------------------------------- /library/panos_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_import.py -------------------------------------------------------------------------------- /library/panos_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_interface.py -------------------------------------------------------------------------------- /library/panos_ipsec_ipv4_proxyid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_ipsec_ipv4_proxyid.py -------------------------------------------------------------------------------- /library/panos_ipsec_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_ipsec_profile.py -------------------------------------------------------------------------------- /library/panos_ipsec_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_ipsec_tunnel.py -------------------------------------------------------------------------------- /library/panos_l2_subinterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_l2_subinterface.py -------------------------------------------------------------------------------- /library/panos_l3_subinterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_l3_subinterface.py -------------------------------------------------------------------------------- /library/panos_lic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_lic.py -------------------------------------------------------------------------------- /library/panos_loadcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_loadcfg.py -------------------------------------------------------------------------------- /library/panos_log_forwarding_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_log_forwarding_profile.py -------------------------------------------------------------------------------- /library/panos_log_forwarding_profile_match_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_log_forwarding_profile_match_list.py -------------------------------------------------------------------------------- /library/panos_log_forwarding_profile_match_list_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_log_forwarding_profile_match_list_action.py -------------------------------------------------------------------------------- /library/panos_loopback_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_loopback_interface.py -------------------------------------------------------------------------------- /library/panos_management_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_management_profile.py -------------------------------------------------------------------------------- /library/panos_match_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_match_rule.py -------------------------------------------------------------------------------- /library/panos_mgtconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_mgtconfig.py -------------------------------------------------------------------------------- /library/panos_nat_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_nat_rule.py -------------------------------------------------------------------------------- /library/panos_nat_rule_facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_nat_rule_facts.py -------------------------------------------------------------------------------- /library/panos_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_object.py -------------------------------------------------------------------------------- /library/panos_object_facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_object_facts.py -------------------------------------------------------------------------------- /library/panos_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_op.py -------------------------------------------------------------------------------- /library/panos_pbf_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_pbf_rule.py -------------------------------------------------------------------------------- /library/panos_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_pg.py -------------------------------------------------------------------------------- /library/panos_query_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_query_rules.py -------------------------------------------------------------------------------- /library/panos_redistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_redistribution.py -------------------------------------------------------------------------------- /library/panos_registered_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_registered_ip.py -------------------------------------------------------------------------------- /library/panos_registered_ip_facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_registered_ip_facts.py -------------------------------------------------------------------------------- /library/panos_restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_restart.py -------------------------------------------------------------------------------- /library/panos_sag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_sag.py -------------------------------------------------------------------------------- /library/panos_security_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_security_rule.py -------------------------------------------------------------------------------- /library/panos_security_rule_facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_security_rule_facts.py -------------------------------------------------------------------------------- /library/panos_service_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_service_group.py -------------------------------------------------------------------------------- /library/panos_service_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_service_object.py -------------------------------------------------------------------------------- /library/panos_snmp_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_snmp_profile.py -------------------------------------------------------------------------------- /library/panos_snmp_v2c_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_snmp_v2c_server.py -------------------------------------------------------------------------------- /library/panos_snmp_v3_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_snmp_v3_server.py -------------------------------------------------------------------------------- /library/panos_software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_software.py -------------------------------------------------------------------------------- /library/panos_static_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_static_route.py -------------------------------------------------------------------------------- /library/panos_syslog_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_syslog_profile.py -------------------------------------------------------------------------------- /library/panos_syslog_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_syslog_server.py -------------------------------------------------------------------------------- /library/panos_tag_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_tag_object.py -------------------------------------------------------------------------------- /library/panos_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_tunnel.py -------------------------------------------------------------------------------- /library/panos_type_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_type_cmd.py -------------------------------------------------------------------------------- /library/panos_userid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_userid.py -------------------------------------------------------------------------------- /library/panos_virtual_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_virtual_router.py -------------------------------------------------------------------------------- /library/panos_virtual_router_facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_virtual_router_facts.py -------------------------------------------------------------------------------- /library/panos_virtual_wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_virtual_wire.py -------------------------------------------------------------------------------- /library/panos_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_vlan.py -------------------------------------------------------------------------------- /library/panos_vlan_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_vlan_interface.py -------------------------------------------------------------------------------- /library/panos_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_zone.py -------------------------------------------------------------------------------- /library/panos_zone_facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/library/panos_zone_facts.py -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/meta/main.yml -------------------------------------------------------------------------------- /module_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module_utils/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module_utils/network/panos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module_utils/network/panos/panos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/module_utils/network/panos/panos.py -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/running-config_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/samples/running-config_sample.xml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/setup.py -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/ansible-pan/HEAD/tests/test.yml -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for paloaltonetworks --------------------------------------------------------------------------------