mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
9 lines
276 B
YAML
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
|