forked from sous-chefs/iis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen.yml
73 lines (68 loc) · 1.39 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
driver:
name: vagrant
customize:
cpus: 2
memory: 4096
transport:
name: winrm
elevated: true
provisioner:
name: chef_zero
deprecations_as_errors: true
product_name: chef
channel: stable
chef_license: accept
verifier:
name: inspec
platforms:
- name: windows-2008r2
driver_config:
box: tas50/windows_2008r2
- name: windows-2012r2
driver_config:
box: tas50/windows_2012r2
- name: windows-2016
driver_config:
box: tas50/windows_2016
- name: windows-2019
driver_config:
box: tas50/windows_2019
suites:
- name: default
run_list:
- recipe[iis::default]
- name: disable_default
run_list:
- recipe[iis::default]
- recipe[iis::remove_default_site]
- name: app
run_list:
- recipe[test::app]
- name: config_property
run_list:
- recipe[test::config_property]
- name: manager
run_list:
- recipe[test::manager]
- name: manager_permission
run_list:
- recipe[test::manager_permission]
excludes: ["windows-2008r2", "windows-2012r2"]
- name: module
run_list:
- recipe[test::module]
- name: pool
run_list:
- recipe[test::pool]
- name: root
run_list:
- recipe[test::root]
- name: section
run_list:
- recipe[test::section]
- name: site
run_list:
- recipe[test::site]
- name: vdir
run_list:
- recipe[test::vdir]