forked from chef-boneyard/supermarket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.cloud.yml
49 lines (46 loc) · 1.15 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: digitalocean
driver_config:
image_id: 3101045
flavor_id: 63
region_id: 4
ssh_key_ids: <%= ENV['DIGITAL_OCEAN_SSH_KEY_IDS'] %>
ssh_key: <%= ENV['DIGITAL_OCEAN_SSH_KEY_PATH'] %>
- name: ubuntu-14.04
driver_plugin: digitalocean
driver_config:
image_id: 5141286
flavor_id: 63
region_id: 4
ssh_key_ids: <%= ENV['DIGITAL_OCEAN_SSH_KEY_IDS'] %>
ssh_key: <%= ENV['DIGITAL_OCEAN_SSH_KEY_PATH'] %>
attributes:
postgres:
version: "9.3"
suites:
- name: default
data_bags_path: data_bags
run_list:
- recipe[supermarket::default]
attributes:
postgres:
auth_method: trust
- name: force_ssl
data_bags_path: data_bags
run_list:
- recipe[supermarket::default]
attributes:
postgres:
auth_method: trust
supermarket:
force_ssl: true
allow_http_domain:
- 'http-only.example.com'