forked from isuftin/stig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
75 lines (70 loc) · 1.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-7.2-vbox
driver:
box: bento/centos-7.2
box_url: bento/centos-7.2
provider: virtualbox
- name: centos-7.2-vmware
driver:
box: bento/centos-7.2
box_url: bento/centos-7.2
provider: vmware_fusion
- name: centos-7.1-vbox
driver:
box: bento/centos-7.1
box_url: bento/centos-7.1
provider: virtualbox
- name: centos-7.1-vmware
driver:
box: bento/centos-7.1
box_url: bento/centos-7.1
provider: vmware_fusion
- name: centos-6.7-vbox
driver:
box: bento/centos-6.7
box_url: bento/centos-6.7
provider: virtualbox
- name: centos-6.7-vmware
driver:
box: bento/centos-6.7
box_url: bento/centos-6.7
provider: vmware_fusion
- name: centos-6.6-vbox
driver:
box: chef/centos-6.6
box_url: chef/centos-6.6
provider: virtualbox
- name: centos-6.6-vmware
driver:
box: bento/centos-6.6
box_url: bento/centos-6.6
provider: vmware_fusion
- name: ubuntu-trusty-vbox
driver:
box: ubuntu/trusty64
box_url: ubuntu/trusty64
provider: virtualbox
# I could not find an "official" vmware_fusion trusty box
# Adding auditd with cis ruleset addresses CIS CentOS Benchmark V1.0.0 4.2.2 and 4.2.4-18
# NOTE: 4.2.17 needs to be uncommented. and 4.2.12 needs to be confirmed. See cis template for more info.
# Note: There is probably a better way to pull in auditd and apply the cis attribute, this works for now.
suites:
- name: default
run_list:
- recipe[auditd]
- recipe[stig]
- recipe[stig::auditd]
- recipe[stig::auditd_rules]
attributes: {
"auditd" : {
"ruleset" : "stig"
}
}
- name: noauditd
run_list:
- recipe[stig::default]