Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion etc/kayobe/ansible/cis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
that:
- ssh_key_type != 'ed25519'
fail_msg: FIPS policy does not currently support ed25519 SSH keys on RHEL family systems
when: ansible_facts.os_family == 'RedHat'
when: ansible_facts.os_family == 'RedHat' and rhel9cis_crypto_policy == 'FIPS'

- name: Ensure the cron package is installed on ubuntu
package:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
##############################################################################
# Rocky 9 CIS Hardening Configuration

# NOTE: Using DEFAULT crypto policy in CI. FIPS breaks ed25519 SSH keys, and
# FUTURE breaks wazuh agent repo metadata download.
rhel9cis_crypto_policy: DEFAULT

##############################################################################
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
##############################################################################
# Rocky 9 CIS Hardening Configuration

# NOTE: Using DEFAULT crypto policy in CI. FIPS breaks ed25519 SSH keys, and
# FUTURE breaks wazuh agent repo metadata download.
rhel9cis_crypto_policy: DEFAULT

##############################################################################
Loading