mirror of
https://github.com/ansible-lockdown/RHEL9-CIS.git
synced 2025-12-24 14:23:05 +00:00
76 lines
2.2 KiB
YAML
76 lines
2.2 KiB
YAML
---
|
|
# vars file for RHEL9-CIS
|
|
|
|
min_ansible_version: 2.10.1
|
|
rhel9cis_allowed_crypto_policies:
|
|
- 'DEFAULT'
|
|
- 'FUTURE'
|
|
- 'FIPS'
|
|
|
|
# Following is left blank for ability to build string
|
|
rhel9cis_crypto_policy_module: ''
|
|
|
|
# Do not adjust these are recognized as part of the CIS benchmark and used during testing
|
|
rhel9cis_allowed_crypto_policies_modules:
|
|
# Recognized by CIS as possible extra options
|
|
- 'OSPP'
|
|
- 'AD-SUPPORT'
|
|
- 'AD-SUPPORT-LEGACY'
|
|
# The following are already included in 1.6.x controls
|
|
- 'NO-SHA1'
|
|
- 'NO-SSHCBC'
|
|
- 'NO-SSHETM'
|
|
- 'NO-SSHWEAKCIPHER'
|
|
- 'NO-SSHWEAKMAC'
|
|
- 'NO-WEAKMAC'
|
|
|
|
# Used to control warning summary
|
|
warn_control_list: ""
|
|
warn_count: 0
|
|
|
|
# list of dicts of interactive users, filled in during prelim.yml
|
|
prelim_interactive_users: []
|
|
|
|
# Default empty values for 1.4.2
|
|
efi_mount_opts_addition: ''
|
|
|
|
gpg_key_package: "{{ ansible_facts.distribution | lower }}-gpg-keys"
|
|
|
|
## Controls 6.3.3.x - Audit template
|
|
# This variable is set to true by tasks 6.3.3.1 to 6.3.3.20. As a result, the
|
|
# audit settings are overwritten with the role's template. In order to exclude
|
|
# specific rules, you must set the variable of form `ubtu24cis_rule_6_3_3_x` above
|
|
# to `false`.
|
|
update_audit_template: false
|
|
|
|
# Defaults
|
|
## Usage on containerized images
|
|
# The role discovers dynamically (in tasks/main.yml) whether it
|
|
# is executed on a container image and sets the variable
|
|
# system_is_container the true. Otherwise, the default value
|
|
# 'false' is left unchanged.
|
|
system_is_container: false
|
|
# The filename of the existing yml file in role's 'vars/' sub-directory
|
|
# to be used for managing the role-behavior when a container was detected:
|
|
# (de)activating rules or for other tasks(e.g. disabling Selinux or a specific
|
|
# firewall-type).
|
|
container_vars_file: is_container.yml
|
|
# rhel9cis is left off the front of this var for consistency in testing pipeline
|
|
# system_is_ec2 toggle will disable tasks that fail on Amazon EC2 instances. Set true to skip and false to run tasks
|
|
system_is_ec2: false
|
|
|
|
# Aide Packages
|
|
|
|
aide_packages:
|
|
- aide
|
|
# Aide initiate command for new DB creation
|
|
aide_initiate_command: /usr/sbin/aide --init
|
|
|
|
# Audit vars
|
|
audit_bins:
|
|
- /sbin/auditctl
|
|
- /sbin/aureport
|
|
- /sbin/ausearch
|
|
- /sbin/autrace
|
|
- /sbin/auditd
|
|
- /sbin/augenrules
|