blob: 29733210c766c1ee527ddad7e14af990febe9d98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Not quite ready yet
driver:
name: digitalocean
digitalocean_access_token: <%= ENV['DIGITALOCEAN_API_TOKEN'] %>
region: <%= ENV['DIGITALOCEAN_REGION'] %>
size: 2gb
ssh_key_ids: <%= ENV['DIGITALOCEAN_SSH_KEYS'] %>
transport:
ssh_key: <%= ENV['DIGITALOCEAN_SSH_KEY_PATH'] %>
platforms:
<% %w(centos-6.5 centos-7.0
fedora-21
debian-8.1
ubuntu-12.04 ubuntu-14.04 ubuntu-15.10
).each do |platform| %>
- name: #{platform}
driver_config:
image: <%= "#{platform.gsub('.', '-')}-x64" %>
<% end %>
|