ansible-roles/roles/pgadmin4/tasks/iptables.yml
2021-12-01 19:13:34 +01:00

9 lines
276 B
YAML

---
- name: Handle pgAdmin4 port
iptables_raw:
name: pga_port
state: "{{ (pga_src_ip | length > 0) | ternary('present','absent') }}"
rules: "-A INPUT -m state --state NEW -p tcp --dport {{ pga_port }} -s {{ pga_src_ip | join(',') }} -j ACCEPT"
tags: pgadmin4