Skip to content

Commit 3468d1c

Browse files
authored
add cjis to compliance demo (#134)
1 parent 10f0bb4 commit 3468d1c

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

linux/compliance-enforce.yml

-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@
1313
- name: Run Compliance Profile
1414
ansible.builtin.include_role:
1515
name: "redhatofficial.rhel{{ ansible_distribution_major_version }}_{{ compliance_profile }}"
16-
1716
...

linux/compliance_profiles.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The following compliance profiles are supported by the [**Linux / Enforce Compli
55
| **Profile** | **Role Repository** |
66
|-------------|---------------------|
77
| CIS | https://galaxy.ansible.com/RedHatOfficial/ansible-role-rhel8-cis |
8+
| CJIS | https://galaxy.ansible.com/RedHatOfficial/ansible-role-rhel8-cjis |
89
| CUI | https://galaxy.ansible.com/RedHatOfficial/ansible-role-rhel8-cui |
910
| HIPAA | https://galaxy.ansible.com/RedHatOfficial/ansible-role-rhel8-hipaa |
1011
| OSPP | https://galaxy.ansible.com/RedHatOfficial/ansible-role-rhel8-ospp |

linux/setup.yml

+5
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,9 @@ controller_templates:
377377
sudo_remove_no_authenticate: false
378378
# used by CIS and STIG profile role
379379
accounts_password_set_max_life_existing: false
380+
# used by the CJIS profile role
381+
service_firewalld_enabled: false
382+
firewalld_sshd_port_enabled: false
380383
survey_enabled: true
381384
survey:
382385
name: ''
@@ -392,6 +395,7 @@ controller_templates:
392395
required: true
393396
choices:
394397
- cis
398+
- cjis
395399
- cui
396400
- hipaa
397401
- ospp
@@ -423,6 +427,7 @@ controller_templates:
423427
required: true
424428
choices:
425429
- cis
430+
- cjis
426431
- cui
427432
- hipaa
428433
- ospp

roles/requirements.yml

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ roles:
33
# RHEL 7 compliance roles from ComplianceAsCode
44
- name: redhatofficial.rhel7_cis
55
version: 0.1.69
6+
- name: redhatofficial.rhel7_cjis
7+
version: 0.1.69
68
- name: redhatofficial.rhel7_cui
79
version: 0.1.67
810
- name: redhatofficial.rhel7_hipaa
@@ -16,6 +18,8 @@ roles:
1618
# RHEL 8 compliance roles from ComplianceAsCode
1719
- name: redhatofficial.rhel8_cis
1820
version: 0.1.69
21+
- name: redhatofficial.rhel8_cjis
22+
version: 0.1.69
1923
- name: redhatofficial.rhel8_cui
2024
version: 0.1.69
2125
- name: redhatofficial.rhel8_hipaa

0 commit comments

Comments
 (0)