-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapps.go
111 lines (109 loc) · 3.04 KB
/
apps.go
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package main
import (
"github.com/hello/sanders/core"
)
var suripuApps = []core.SuripuApp{
{
Name: "suripu-app",
SecurityGroup: "sg-d28624b6",
InstanceType: "t2.medium",
InstanceProfile: "suripu-app",
TargetDesiredCapacity: 2,
UsesPacker: false,
JavaVersion: 8,
PackagePath: "com/hello/suripu",
},
{
Name: "suripu-service",
SecurityGroup: "sg-11ac0e75",
InstanceType: "t2.medium",
InstanceProfile: "suripu-service",
TargetDesiredCapacity: 3,
UsesPacker: false,
JavaVersion: 8,
PackagePath: "com/hello/suripu",
},
{
Name: "suripu-workers",
SecurityGroup: "sg-7054d714",
InstanceType: "c3.xlarge",
InstanceProfile: "suripu-workers",
TargetDesiredCapacity: 2,
UsesPacker: false,
JavaVersion: 8,
PackagePath: "com/hello/suripu",
Spot: &core.SpotSettings{
Price: "0.210",
},
},
{
Name: "suripu-admin",
SecurityGroup: "sg-71773a16",
InstanceType: "t2.micro",
InstanceProfile: "suripu-admin",
TargetDesiredCapacity: 1,
UsesPacker: false,
JavaVersion: 8,
PackagePath: "com/hello/suripu",
},
{
Name: "logsindexer",
SecurityGroup: "sg-36f95050",
InstanceType: "t2.micro",
InstanceProfile: "logsindexer",
TargetDesiredCapacity: 1,
UsesPacker: false,
JavaVersion: 8,
PackagePath: "com/hello/suripu",
},
{
Name: "sense-firehose",
SecurityGroup: "sg-5296b834",
InstanceType: "m3.medium",
InstanceProfile: "sense-firehose",
TargetDesiredCapacity: 1,
UsesPacker: false,
JavaVersion: 8,
PackagePath: "com/hello/suripu",
},
{
Name: "hello-time",
SecurityGroup: "sg-5c371525",
InstanceType: "t2.nano",
InstanceProfile: "hello-time",
TargetDesiredCapacity: 2,
UsesPacker: false,
JavaVersion: 8,
PackagePath: "com/hello/time",
},
{
Name: "suripu-queue",
SecurityGroup: "sg-3e55ba46",
InstanceType: "c3.large",
InstanceProfile: "suripu-queue",
TargetDesiredCapacity: 1,
UsesPacker: false,
JavaVersion: 8,
PackagePath: "com/hello/suripu",
},
{
Name: "messeji",
SecurityGroup: "sg-45c5c73c",
InstanceType: "m3.medium",
InstanceProfile: "messeji",
TargetDesiredCapacity: 2,
UsesPacker: false,
JavaVersion: 8,
PackagePath: "com/hello",
},
{
Name: "taimurain",
SecurityGroup: "sg-b3f631c8",
InstanceType: "c4.xlarge",
InstanceProfile: "taimurain",
TargetDesiredCapacity: 3,
UsesPacker: true,
JavaVersion: 8,
PackagePath: "com/hello",
},
}