forked from chef-cookbooks/ssh_known_hosts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.cloud.yml
49 lines (43 loc) · 1.04 KB
/
.kitchen.cloud.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
44
45
46
47
48
49
---
driver_config:
digitalocean_client_id: <%= ENV['DIGITAL_OCEAN_CLIENT_ID'] %>
digitalocean_api_key: <%= ENV['DIGITAL_OCEAN_API_KEY'] %>
provisioner:
name: chef_zero
require_chef_omnibus: latest
platforms:
- name: ubuntu-12.04
driver_plugin: digital_ocean
driver_config:
region: <%= ENV['DIGITAL_OCEAN_REGION'] %>
- name: ubuntu-14.04
driver_plugin: digital_ocean
driver_config:
region: <%= ENV['DIGITAL_OCEAN_REGION'] %>
- name: centos-6.5
driver_plugin: digital_ocean
driver_config:
region: <%= ENV['DIGITAL_OCEAN_REGION'] %>
- name: centos-5.8
driver_plugin: digital_ocean
driver_config:
region: <%= ENV['DIGITAL_OCEAN_REGION'] %>
suites:
- name: default
run_list:
- recipe[ssh_known_hosts]
attributes: {}
- name: cacher
run_list:
- recipe[ssh_known_hosts::cacher]
attributes: {}
- name: cacher-client
run_list:
- recipe[ssh_known_hosts::default]
attributes:
ssh_known_hosts:
use_data_bag_cache: true
- name: lwrp-test
run_list:
- recipe[ssh_known_hosts_test::default]
attributes: {}