-
Notifications
You must be signed in to change notification settings - Fork 32
/
.kitchen.yml
40 lines (35 loc) · 834 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
---
driver:
name: vagrant
require_chef_omnibus: 11.10.0
customize:
memory: 1024
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt]
suites:
- name: default
data_bags_path: "test/integration/data_bags"
encrypted_data_bag_secret_key_path: "test/integration/encrypted_data_bag_secret"
run_list:
- recipe[loggly-rsyslog_test::default]
- name: without_tls
data_bags_path: "test/integration/data_bags"
encrypted_data_bag_secret_key_path: "test/integration/encrypted_data_bag_secret"
attributes:
loggly:
tls:
enabled: false
run_list:
- recipe[loggly-rsyslog_test::default]
- name: no_data_bag
attributes:
loggly:
token:
from_databag: false
value: logglytoken123456
run_list:
- recipe[loggly-rsyslog_test::default]