forked from sous-chefs/certificate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.kitchen.yml
36 lines (34 loc) · 870 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
---
driver_plugin: vagrant
platforms:
- name: ubuntu-12.04
- name: ubuntu-10.04
- name: centos-6.6
- name: centos-5.11
- name: fedora-21
suites:
- name: default
data_bag_path: "test/integration/default/data_bags"
encrypted_data_bag_secret_key_path: "test/integration/default/encrypted_data_bag_secret"
run_list: ["recipe[certificate::manage_by_attributes]"]
attributes:
certificate: [
test: {
data_bag_type: 'encrypted',
nginx_cert: true,
cert_file: "test.pem",
key_file: "test.key"
}
]
- name: unencrypted
data_bag_path: "test/integration/unencrypted/data_bags"
run_list: ["recipe[certificate::manage_by_attributes]"]
attributes:
certificate: [
test: {
data_bag_type: 'unencrypted',
nginx_cert: true,
cert_file: "test.pem",
key_file: "test.key"
}
]