forked from kinecosystem/blockchain-ops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvars.example.yml
More file actions
58 lines (55 loc) · 1.56 KB
/
vars.example.yml
File metadata and controls
58 lines (55 loc) · 1.56 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
---
stellar:
# unique name for the stellar network, used for naming aws resources.
#
# NOTE this is NOT the stellar network passphrase!
#
# NOTE try to keep the network name short as some aws resource have a name
# length limit e.g. elb name length must be less than 32 characters
network_name: terraform-test
tld: mydomain.com # route53 top level domain
ssh:
private_key: ./terraform-test.pem
public_key: ./terraform-test.pem.pub
nodes:
- region: us-east-1
zone: us-east-1a
instance_type: t2.medium
rds:
instance_class: db.t2.medium
password: "12345678"
horizon:
instance_type: t2.medium
rds:
instance_class: db.t2.medium
password: "12345678"
- region: us-east-1
zone: us-east-1b
instance_type: t2.medium
rds:
instance_class: db.t2.medium
password: "12345678"
horizon:
instance_type: t2.medium
rds:
instance_class: db.t2.medium
password: "12345678"
- region: us-east-1
zone: us-east-1c
instance_type: t2.medium
rds:
instance_class: db.t2.medium
password: "12345678"
horizon:
instance_type: t2.medium
rds:
instance_class: db.t2.medium
password: "12345678"
# missing horizon key means horizon ec2 and rds instances will not be created
# i.e. horizon is optional
- region: us-west-2
zone: us-west-2c
instance_type: t2.medium
rds:
instance_class: db.t2.medium
password: "12345678"