-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.kitchen.yml
35 lines (32 loc) · 943 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
---
driver:
name: vagrant
provisioner:
name: ansible_playbook
require_ansible_repo: true
ansible_verbose: true
playbook: tests/testkitchen.yml
hosts: localhost
extra_vars:
threatstack_deploy_key: <%= ENV['TS_DEPLOY_KEY'] != nil ? ENV['TS_DEPLOY_KEY'] : 'ts_deploy_key' %>
<% if ENV['TS_NO_CONFIG_AGENT'] %>
threatstack_configure_agent: false
<% end %>
threatstack_agent_config_args: <%= ENV['TS_CONFIG_ARGS'] %>
<% if ENV['TS_PACKAGE_VERSION'] %>
# Should be in form threatstack-version=<version>. ex. threatstack-version=1.4.4.0ubuntu14.0
threatstack_pkg: <%= ENV['TS_PACKAGE_VERSION'] %>
<% end %>
<% if ENV['TS_RULE_SETS'] %>
threatstack_ruleset: "<%= ENV['TS_RULE_SETS'] %>"
<% end %>
platforms:
- name: centos-6.7
- name: centos-7.2
- name: debian-7.8
- name: debian-8.1
- name: fedora-25
- name: ubuntu-12.04
- name: ubuntu-14.04
suites:
- name: default