15 lines
308 B
YAML
15 lines
308 B
YAML
|
# vim: ft=yaml.ansible
|
||
|
---
|
||
|
- name: Allow necessary ports in UFW
|
||
|
community.general.ufw:
|
||
|
to_port: "{{ item.port }}"
|
||
|
proto: "{{ item.proto }}"
|
||
|
comment: "{{ item.comment }}"
|
||
|
rule: allow
|
||
|
loop: "{{ open_ports }}"
|
||
|
|
||
|
- name: Enable UFW
|
||
|
community.general.ufw:
|
||
|
policy: deny
|
||
|
state: enabled
|