This repository has been archived on 2026-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
Set-OPS/roles/fail2ban_ssh/tasks/main.yml

30 lines
622 B
YAML
Raw Permalink Normal View History

2026-06-20 15:17:46 -04:00
---
- name: Installer fail2ban
ansible.builtin.apt:
name: fail2ban
state: present
- name: Créer le répertoire jail.d
ansible.builtin.file:
path: /etc/fail2ban/jail.d
state: directory
owner: root
group: root
mode: "0755"
- name: Déployer la jail SSH Set-OPS
2026-06-20 15:17:46 -04:00
ansible.builtin.template:
src: sshd-setops.local.j2
dest: /etc/fail2ban/jail.d/sshd-setops.local
2026-06-20 15:17:46 -04:00
owner: root
group: root
mode: "0644"
notify: Restart fail2ban
- name: Activer fail2ban
ansible.builtin.systemd:
name: fail2ban
enabled: true
state: started
when: fail2ban_ssh_enabled | bool