-
Notifications
You must be signed in to change notification settings - Fork 270
/
kitchen.yml
52 lines (47 loc) · 941 Bytes
/
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
driver:
name: vagrant
customize:
cpus: 2
memory: 4096
transport:
name: winrm
elevated: true
provisioner:
name: chef_zero
deprecations_as_errors: true
product_name: chef
product_version: 14.7
verifier:
name: inspec
platforms:
- name: windows-8.1
driver:
box: chef/windows-8.1-enterprise
- name: windows-10
driver:
box: chef/windows-10-enterprise
- name: windows-2012r2
driver:
box: tas50/windows_2012r2
- name: windows-2016
driver:
box: tas50/windows_2016
- name: windows-2019
driver:
box: tas50/windows_2019
suites:
- name: http_acl
run_list:
- recipe[test::http_acl]
- name: schannel
run_list:
- recipe[test::schannel]
- name: zipfile
run_list:
- recipe[test::zipfile]
- name: user_privilege
run_list:
- recipe[test::user_privilege]
- name: everything
run_list:
- recipe[test::everything]