roles_common_fail2ban_tasks_main.yml.md

The source files for this tutorial can be downloaded from its GitHub repository, or cloned into your current working directory using the command git clone https://github.com/ionos-cloud/module-ansible.git before changing into the module-ansible/docs/tutorials/05__introducing_roles sub-directory.

01__create_jumpbox_and_nlb.yml
---
# ==============================================================================
- name: About to execute tasks file for role 'fail2ban'
  ansible.builtin.meta: noop



- name: Install fail2ban
  ansible.builtin.package:
    name:
      - fail2ban
    state: present

Last updated