-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.yaml
60 lines (57 loc) · 1.72 KB
/
config.yaml
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
everything:
# What AWS region do we use for VPC and ASG stacks?
# optional
region: eu-west-1
# CIDR for the new vpc to be created
cidr: 10.1.0.0/22
# What is the AMI ID of the Folding @ Home Image
# mandatory
ami_id: ami-0e55fa4214caf8a32
# What ssh key is allowed access to the instances in the ASG?
# mandatory
ssh_key: base_08062020
# What is the maximum price in USD that we're willing to pay?
# mandatory
max_spot_price: "0.009"
# What IP addresses to allow security group access from?
# mandatory
ssh_allow_ip_range: 84.232.204.212/32
# What instance type/sizing would you prefer?
# optional
ec2_instance_type: "t3a.small"
# How many instances do you wish to use?
# optional
asg_size: 1
folding:
# What AWS region do we use for VPC and ASG stacks?
# optional
region: eu-west-1
# CIDR for the new vpc to be created
# mandatory
cidr: 10.0.0.0/16
# What is the AMI ID of the Folding @ Home Image
# mandatory
ami_id: ami-0a8341e7c0a146e7f
# What ssh key is allowed access to the instances in the ASG?
# mandatory
ssh_key: sathya_folding_ssh
# What is the maximum price in USD that we're willing to pay?
# If you leave this empty, we will fetch the current spot price
# and raise the bid by a few cents. The instances will be set up
# only after confirmation
# optional
max_spot_price: "0.045"
# What IP addresses to allow security group access from?
# mandatory
ssh_allow_ip_range: 84.232.204.212/32
# What instance type/sizing would you prefer?
# optional
ec2_instance_type: "c5n.large"
# How many instances do you wish to use?
# optional
asg_size: 2
tags:
- name: used_for
value: folding
- name: created_by
value: sathyabhat