-
Notifications
You must be signed in to change notification settings - Fork 133
/
.kitchen.yml
60 lines (56 loc) · 1.09 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
---
driver:
name: vagrant
platforms:
- name: ubuntu-20-04
driver_config:
box: bento/ubuntu-20.04
- name: centos-7
- name: centos-stream-8
- name: centos-stream-9
- name: almalinux-8
- name: almalinux-9
- name: rockylinux-8
- name: rockylinux-9
- name: oracle-7
- name: oracle-8
- name: oracle-9
- name: debian-10
- name: debian-11
- name: fedora-37
- name: fedora-38
- name: opensuse-leap-42
- name: amazonlinux-1
driver_config:
box: realreadme/amazon2016.09
- name: amazonlinux-2
driver_config:
box: stakahashi/amazonlinux2
provisioner:
name: chef_zero
product_name: cinc
<% if ENV['CINC_VERSION'] %>
product_version: '<%= ENV['CINC_VERSION'] %>'
<% end %>
verifier:
name: inspec
sudo: true
suites:
- name: default
run_list:
- recipe[test]
- recipe[os-hardening::default]
- name: modules_disabled
run_list:
- recipe[test]
- recipe[os-hardening::default]
attributes:
os-hardening:
security:
kernel:
enable_module_loading: false
verifier:
inspec_tests:
- path: test/integration/default
attributes:
kernel_modules_disabled: 1