-
Notifications
You must be signed in to change notification settings - Fork 1
/
tf-schema.json
61 lines (61 loc) · 1.48 KB
/
tf-schema.json
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
{
"stages": ["production", "staging"],
"providers": {
"aws": {
"region": "us-east-2",
"services": {
"ec2": [
{
"name": "application",
"ami": "ami-07c1207a9d40bc3bd",
"instance_type": "t2.micro",
"ports": [8080],
"count": 1
}
],
"elb" : [
{
"availability_zones": ["us-east-2a"],
"name-elb": "my-load-balancer",
"instances": "application",
"cross_zone_load_balancing": true,
"idle_timeout": 400,
"connection_draining": true,
"connection_draining_timeout": 400,
"listeners": {
"instance_port": 8080,
"instance_protocol": "HTTP",
"lb_port": 80,
"lb_protocol": "HTTP"
},
"healthCheck": {
"healthy_threshold": "2",
"unhealthy_threshold": "2",
"timeout": 3,
"target": "HTTP:8080/api/healthcheck",
"interval": 30
}
}
]
}
},
"gcp": {
"region": "us-central1-c",
"project": "axial-chemist-345114",
"services": {
"gci": [
{
"gci_name": "application",
"gci_type": "f1-micro",
"region": "us-central1-c"
}
],
"pubsub": [
{
"topic": "tropico"
}
]
}
}
}
}