feat: add OpenSSH to ufw allow list

This commit is contained in:
Price Hiller 2023-01-08 06:34:48 -06:00
parent ee773ceea7
commit a6a22d0d0a
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,7 @@
- name: Permit OpenSSH Through The Firewall & Enable UFW
become: true
community.general.ufw:
state: enabled
rule: allow
name: OpenSSH
log: true

View File

@ -3,3 +3,5 @@
- ansible.builtin.import_tasks: users.yml
- ansible.builtin.import_tasks: ssh.yml
- ansible.builtin.import_tasks: dns.yml
- ansible.builtin.import_tasks: firewall.yml