Add Pi-hole host_vars for firewall ports

Allow required ports for Pi-hole:
- 22/tcp (SSH)
- 53/tcp, 53/udp (DNS)
- 80/tcp (Web admin)
- 443/tcp (HTTPS)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
directlx 2026-02-04 09:25:46 -05:00
parent 066bf45b0e
commit b2151858da
2 changed files with 9 additions and 0 deletions

View File

9
host_vars/pihole.yml Normal file
View File

@ -0,0 +1,9 @@
---
# Pi-hole specific variables
common_firewall_allowed_ports:
- "22/tcp" # SSH
- "53/tcp" # DNS
- "53/udp" # DNS
- "80/tcp" # Web admin
- "443/tcp" # HTTPS (optional)