forked from zuazo/ssl_certificate-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
73 lines (70 loc) · 1.93 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
vm_hostname: 'ssl-certificate.local'
network:
- ["forwarded_port", {guest: 443, host: 4443, auto_correct: true}]
provisioner:
name: chef_solo
platforms:
- name: centos-5.11
- name: centos-6.6
- name: debian-7.8
run_list: [ "recipe[apt]" ]
- name: fedora-20
- name: fedora-21
- name: ubuntu-10.04
run_list: [ "recipe[apt]" ]
- name: ubuntu-12.04
run_list: [ "recipe[apt]" ]
- name: ubuntu-14.04
run_list: [ "recipe[apt]" ]
- name: ubuntu-14.10
run_list: [ "recipe[apt]" ]
suites:
- name: default
excludes:
# apache2::mod_ssl not compatible
- centos-5.11
- freebsd-10.0
data_bags_path: "test/data_bags"
encrypted_data_bag_secret_key_path: "test/encrypted_data_bag_secret"
run_list:
- recipe[ssl_certificate_test::default]
- name: subject_alternate_names
data_bags_path: "test/data_bags"
encrypted_data_bag_secret_key_path: "test/encrypted_data_bag_secret"
run_list:
- recipe[ssl_certificate_test::subject_alternate_names]
- name: intermediate_chain
excludes:
# apache2::mod_ssl not compatible
- centos-5.11
- freebsd-10.0
data_bags_path: "test/data_bags"
encrypted_data_bag_secret_key_path: "test/encrypted_data_bag_secret"
run_list:
- recipe[ssl_certificate_test::intermediate_chain]
- name: with_ca
excludes:
# apache2::mod_ssl not compatible
- centos-5.11
- freebsd-10.0
# TLS 1.2 not supported (modern compatibility)
- ubuntu-10.04
- ubuntu-12.04
data_bags_path: "test/data_bags"
encrypted_data_bag_secret_key_path: "test/encrypted_data_bag_secret"
run_list:
- recipe[ssl_certificate_test::self_signed_with_ca_certificate]
- name: nginx
excludes:
# no TLSv1.1 support
- centos-5.11
- ubuntu-10.04
# nginx cookbook not compatible
- freebsd-10.0 # https://github.com/miketheman/nginx/issues/274
data_bags_path: "test/data_bags"
encrypted_data_bag_secret_key_path: "test/encrypted_data_bag_secret"
run_list:
- recipe[ssl_certificate_test::nginx]