forked from threatstack/threatstack-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
33 lines (30 loc) · 973 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
---
driver:
name: vagrant
provisioner:
product_name: chef
product_version: 13
platforms:
- name: ubuntu-14.04
- name: ubuntu-16.04
- name: debian-7.8
- name: centos-6.7
- name: centos-7.3
- name: fedora-25
suites:
- name: default
run_list:
- recipe[threatstack]
provisioner:
encrypted_data_bag_secret_key_path: test/integration/data_bags/insecure_data_bag_secret
attributes:
apt:
compile_time_update: true
threatstack:
deploy_key: <%= ENV['TS_DEPLOY_KEY'] != nil ? ENV['TS_DEPLOY_KEY'] : nil %>
feature_plan: <%= ENV['TS_FEATURE_PLAN'] != nil ? ENV['TS_FEATURE_PLAN'] : 'monitor' %>
agent_config_args:
- <%= ENV['TS_CONFIG_ARGS'] %>
version: <%= ENV['TS_PACKAGE_VERSION'] %>
cloudsight_service_action: <%= ENV['TS_SERVICE_ACTION'] != nil ? ENV['TS_SERVICE_ACTION'] : 'enable' %>
configure_agent: <%= ENV['TS_CONFIG_AGENT'] == '0' ? false : true %>