This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: Enforce policy to block non-compliant apps on Palo Alto | |
hosts: palo_fw | |
gather_facts: no | |
vars: | |
denied_apps: | |
- telnet | |
- ftp | |
- smb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: Deploy NAT and Security policies on Palo Alto Firewall | |
hosts: palo_fw | |
gather_facts: no | |
vars: | |
nat_rule_name: "NAT-Allow-HTTPS" | |
source_zone: "untrust" | |
dest_zone: "dmz" | |
source_ip: "203.0.113.25" | |
dest_ip: "10.0.2.10" |