feat: ansible: install and open ssh port using ufw

This commit is contained in:
Aravinth Manivannan 2023-08-17 04:57:33 +05:30
parent 67de93dad1
commit 304dc483b6
Signed by: realaravinth
GPG key ID: AD9F0F08E855ED88

View file

@ -0,0 +1,26 @@
- name: Install ufw
become: true
ansible.builtin.apt:
update_cache: true
pkg:
- ufw
- name: Set logging
become: true
community.general.ufw:
logging: "on"
- name: Allow port 22 and enable UFW
become: true
community.general.ufw:
state: enabled
rule: allow
proto: tcp
port: "22"
- name: Enable and start ufw service
become: true
ansible.builtin.service:
name: ufw
enabled: true
state: started