-
Notifications
You must be signed in to change notification settings - Fork 10
/
.kitchen.cloud.yml
56 lines (49 loc) · 1.02 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
50
51
52
53
54
55
56
---
driver:
aws_ssh_key_id: <%= ENV['AWS_KEYPAIR_NAME'] %>
platforms:
- name: ubuntu-10.04
driver_plugin: digitalocean
driver_config:
flavor: 512MB
region: Amsterdam 2
run_list:
recipe[apt]
- name: ubuntu-14.04
driver_plugin: digitalocean
driver_config:
flavor: 512MB
region: Amsterdam 2
run_list:
recipe[apt]
- name: centos-5.8
driver_plugin: digitalocean
driver_config:
flavor: 512MB
region: Amsterdam 2
- name: centos-6.5
driver_plugin: digitalocean
driver_config:
flavor: 512MB
region: Amsterdam 2
- name: debian-7.0
driver_plugin: digitalocean
driver_config:
flavor: 512MB
region: Amsterdam 2
run_list:
recipe[apt]
- name: fedora-20
driver_plugin: digitalocean
driver_config:
flavor: 512MB
region: Amsterdam 2
- name: amazon-2013.09.2
driver_plugin: ec2
driver_config:
image_id: ami-bba18dd2
flavor_id: t1.micro
username: ec2-user
<% if ENV['SSH_AGENT_PID'].nil? %>
ssh_key: <%= ENV['EC2_SSH_KEY_PATH'] %>
<% end %>