mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
9 lines
292 B
YAML
9 lines
292 B
YAML
---
|
|
|
|
- name: Handle n8n port in the firewall
|
|
iptables_raw:
|
|
name: n8n_port
|
|
state: "{{ (n8n_src_ip | length > 0) | ternary('present','absent') }}"
|
|
rules: "-A INPUT -m state --state NEW -p tcp --dport {{ n8n_port }} -s {{ n8n_src_ip | join(',') }} -j ACCEPT"
|
|
tags: firewall,n8n
|