forked from SumoLogic/sumologic-collector-chef-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
43 lines (39 loc) · 956 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: ubuntu-14.04
- name: centos-7.1
- name: centos-6.7
- name: windows-2012r2
driver:
box: windows-2012r2
transport:
name: winrm
password: vagrant
username: vagrant
suites:
- name: default
data_bags_path: test/integration/data_bags
run_list:
- recipe[data-bag-faker]
- recipe[sumologic-collector::default]
attributes:
SUMO_ACCESS_ID: <%= ENV['SUMO_ACCESS_ID'] %>
SUMO_ACCESS_KEY: <%= ENV['SUMO_ACCESS_KEY'] %>
excludes:
- windows-2012r2
- name: windows
data_bags_path: test/integration/data_bags
run_list:
- recipe[data-bag-faker]
- recipe[sumologic-collector::windows]
attributes:
SUMO_ACCESS_ID: <%= ENV['SUMO_ACCESS_ID'] %>
SUMO_ACCESS_KEY: <%= ENV['SUMO_ACCESS_KEY'] %>
excludes:
- ubuntu-14.04
- centos-7.1
- centos-6.7