forked from isuftin/stig
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.kitchen.yml
61 lines (57 loc) · 1.47 KB
/
.kitchen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<%
platforms = %w(centos-7 centos-6)
use_git = false
%>
---
driver:
name: vagrant
provisioner:
name: chef_zero
verifier:
name: inspec
sudo: true
sudo_options: '-u root'
format: json
output: hardenedrhel7.json
platforms:
<% platforms.each do |plat| %>
- name: <%= plat %>
verifier:
inspec_tests:
- name: <%= plat %>
<% if use_git == false %>
path: ../../auditd_rules_test/inspec_profiles/profiles/disa_stig-rhel7-baseline
<% else %>
git: https://github.com/jburns12/inspec_profiles/tree/master_original/profiles/disa_stig-rhel7-baseline
<% end %>
<% end %>
suites:
- name: default
run_list:
- recipe[auditd]
- recipe[stig::auditd]
- recipe[stig::auditd_rules]
- recipe[stig::fstab_tmp]
- recipe[stig::tcp_wrappers]
- recipe[stig::boot_settings]
- recipe[stig::proc_hard]
- recipe[stig::cis]
- recipe[stig::avahi_daemon]
- recipe[stig::ipv6]
- recipe[stig::dhcp]
- recipe[stig::mail_transfer_agent]
- recipe[stig::hosts]
- recipe[stig::rsyslog]
- recipe[logrotate::global]
- recipe[stig::sshd_config]
- recipe[stig::system_auth]
- recipe[stig::login_defs]
- recipe[stig::login_banner]
- recipe[stig::file_permissions]
- recipe[stig::audits]
- recipe[stig::audit_scripts]
- recipe[stig::su_restriction]
- recipe[stig::aide]
attributes:
"auditd" :
"ruleset" : "stig"