feat: improved firewall rule task names
This commit is contained in:
parent
9d4be2265d
commit
7be3d30496
1 changed files with 2 additions and 2 deletions
|
|
@ -55,7 +55,7 @@
|
||||||
logging: "on"
|
logging: "on"
|
||||||
|
|
||||||
# basic firewall rules
|
# basic firewall rules
|
||||||
- name: "firewall - allow {{ item.proto | default(tcp) }}/{{ item.to_port }} from {{ item.from_ip }}"
|
- name: "firewall - {{ item.name }}"
|
||||||
community.general.ufw:
|
community.general.ufw:
|
||||||
rule: "allow"
|
rule: "allow"
|
||||||
direction: "in"
|
direction: "in"
|
||||||
|
|
@ -65,7 +65,7 @@
|
||||||
loop: "{{ __firewall_basic_rules }}"
|
loop: "{{ __firewall_basic_rules }}"
|
||||||
|
|
||||||
# host firewall rules
|
# host firewall rules
|
||||||
- name: "firewall - allow {{ item.proto | default(tcp) }}/{{ item.to_port }} from {{ item.from_ip }}"
|
- name: "firewall - {{ item.name }}"
|
||||||
community.general.ufw:
|
community.general.ufw:
|
||||||
rule: "allow"
|
rule: "allow"
|
||||||
direction: "in"
|
direction: "in"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue