--- - name: "1.3.1 | PATCH | Ensure AIDE is installed" block: - name: "1.3.1 | PATCH | Ensure AIDE is installed | Install AIDE" ansible.builtin.package: name: aide state: present - name: "1.3.1 | PATCH | Ensure AIDE is installed | Configure AIDE" ansible.builtin.command: /usr/sbin/aide --init -B 'database_out=file:/var/lib/aide/aide.db.gz' changed_when: false failed_when: false async: 45 poll: 0 args: creates: /var/lib/aide/aide.db.gz when: not ansible_check_mode when: - rhel9cis_config_aide - rhel9cis_rule_1_3_1 tags: - level1-server - level1-workstation - aide - patch - rule_1.3.1 - name: "1.3.2 | PATCH | Ensure filesystem integrity is regularly checked" ansible.builtin.cron: name: Run AIDE integrity check cron_file: "{{ rhel9cis_aide_cron['cron_file'] }}" user: "{{ rhel9cis_aide_cron['cron_user'] }}" minute: "{{ rhel9cis_aide_cron['aide_minute'] | default('0') }}" hour: "{{ rhel9cis_aide_cron['aide_hour'] | default('5') }}" day: "{{ rhel9cis_aide_cron['aide_day'] | default('*') }}" month: "{{ rhel9cis_aide_cron['aide_month'] | default('*') }}" weekday: "{{ rhel9cis_aide_cron['aide_weekday'] | default('*') }}" job: "{{ rhel9cis_aide_cron['aide_job'] }}" when: - rhel9cis_rule_1_3_2 - not system_is_ec2 tags: - level1-server - level1-workstation - aide - file_integrity - patch - rule_1.3.2 - name: "1.3.3 Ensure cryptographic mechanisms are used to protect the integrity of audit tools" ansible.builtin.template: src: etc/aide.conf.d/crypt_audit_procs.conf.j2 dest: /etc/aide.conf.d/crypt_audit_procs.conf owner: root group: 0640 when: - rhel9cis_rule_1_3_2 - not system_is_ec2 tags: - level1-server - level1-workstation - aide - file_integrity - patch - rule_1.3.3