-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy path.kitchen.cloud.yml
More file actions
64 lines (54 loc) · 1.22 KB
/
Copy path.kitchen.cloud.yml
File metadata and controls
64 lines (54 loc) · 1.22 KB
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
57
58
59
60
61
62
63
64
---
driver:
aws_ssh_key_id: <%= ENV['AWS_KEYPAIR_NAME'] %>
platforms:
- name: centos-7-0-x64
driver_plugin: digitalocean
driver_config:
flavor: 512MB
- name: centos-8-0-x64
driver_plugin: digitalocean
driver_config:
flavor: 512MB
- name: debian-8-0-x64
driver_plugin: digitalocean
driver_config:
flavor: 512MB
run_list: ["recipe[apt]"]
- name: debian-9-0-x64
driver_plugin: digitalocean
driver_config:
flavor: 512MB
run_list: ["recipe[apt]"]
- name: fedora-19-x64
driver_plugin: digitalocean
driver_config:
flavor: 512MB
- name: fedora-20-x64
driver_plugin: digitalocean
driver_config:
flavor: 512MB
- name: ubuntu-16-04-x64
driver_plugin: digitalocean
driver_config:
flavor: 512MB
run_list: ["recipe[apt]"]
- name: ubuntu-18-04-x64
driver_plugin: digitalocean
driver_config:
flavor: 512MB
run_list: ["recipe[apt]"]
- name: ubuntu-20-04-x64
driver_plugin: digitalocean
driver_config:
flavor: 512MB
run_list: ["recipe[apt]"]
- name: amazon-2
driver_plugin: ec2
driver_config:
image_id: ami-02354e95b39ca8dec
flavor_id: t2.micro
username: ec2-user
<% if ENV['SSH_AGENT_PID'].nil? %>
ssh_key: <%= ENV['EC2_SSH_KEY_PATH'] %>
<% end %>