mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
17 lines
615 B
YAML
17 lines
615 B
YAML
---
|
|
|
|
- name: Handle Synapse TLS port
|
|
iptables_raw:
|
|
name: synapse_tls_port
|
|
state: "{{ (synapse_tls_src_ip | length > 0) | ternary('present', 'absent') }}"
|
|
rules: "-A INPUT -m state --state NEW -p tcp --dport {{ synapse_tls_port }} -s {{ synapse_tls_src_ip | join(',') }} -j ACCEPT"
|
|
tags: matrix,firewall
|
|
|
|
- name: Handle Synapse port
|
|
iptables_raw:
|
|
name: synapse_port
|
|
state: "{{ (synapse_src_ip | length > 0) | ternary('present', 'absent') }}"
|
|
rules: "-A INPUT -m state --state NEW -p tcp --dport {{ synapse_port }} -s {{ synapse_src_ip | join(',') }} -j ACCEPT"
|
|
tags: matrix,firewall
|
|
|