Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for #273 Allow for a local crypto policy module, for instance for the openSSH server. #358

Merged
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
9 changes: 8 additions & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,14 @@ rhel8cis_selinux_policy: targeted

# 1.6 Set crypto policy (LEGACY, DEFAULT, FUTURE, FIPS)
rhel8cis_crypto_policy: 'DEFAULT'
# Added module to be loaded - (Allowed options in vars/main.yml - OSPP and AD-SUPPORT)

# 1.6.1 Allowed crypto-policy modules
rhel8cis_allowed_crypto_policies_modules:
- 'AD-SUPPORT'
- 'NO-SHA1'
- 'OSPP'

# Added module to be loaded
rhel8cis_crypto_policy_module: ''

# 1.7
Expand Down
4 changes: 0 additions & 4 deletions vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ rhel8cis_allowed_crypto_policies:
- 'FUTURE'
- 'FIPS'

rhel8cis_allowed_crypto_policies_modules:
- 'OSPP'
- 'AD-SUPPORT'

# default setting, this should not be changed
# and is overridden if a task that changed sets the value if required.
reboot_required: false
Expand Down