We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e035fa7 + 3a4bd49 commit 9549f1bCopy full SHA for 9549f1b
etc/kayobe/ansible/cis.yml
@@ -4,6 +4,15 @@
4
hosts: overcloud
5
become: true
6
tasks:
7
+ # TODO: Remove this when Red Hat FIPS policy has been updated to allow ed25519 keys.
8
+ # https://gitlab.com/gitlab-org/gitlab/-/issues/367429#note_1840422075
9
+ - name: Assert that we are using a supported SSH key
10
+ assert:
11
+ that:
12
+ - ssh_key_type != 'ed25519'
13
+ fail_msg: FIPS policy does not currently support ed25519 SSH keys on RHEL family systems
14
+ when: ansible_facts.os_family == 'RedHat'
15
+
16
- name: Ensure the cron package is installed on ubuntu
17
package:
18
name: cron
0 commit comments