-
Notifications
You must be signed in to change notification settings - Fork 0
/
retool.yaml
325 lines (304 loc) · 10.2 KB
/
retool.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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
AWSTemplateFormatVersion: '2010-09-09'
Parameters:
Environment:
Type: String
Description: Environment string sent back to plogger with the logs
SubnetId:
Type: List<AWS::EC2::Subnet::Id>
Description: Select at two subnets in your selected VPC.
Cluster:
Type: String
Description: Cluster to put service in.
Image:
Type: String
Description: Image to use in the service.
DesiredCount:
Type: Number
Description: Default number of tasks to run
MaximumPercent:
Type: Number
Description: Maximum percentage of tasks to run during a deployment
Default: 150
MinimumHealthyPercent:
Type: Number
Default: 50
Description: Maximum percentage of tasks to run during a deployment
VpcId:
Type: AWS::EC2::VPC::Id
Description: Select a VPC that allows instances access to the Internet.
Force:
Type: String
Description: "Used to force the deployment even when the image and parameters are otherwised unchanged."
Default: "false"
Resources:
ALBSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: !Join [" ", [!Ref 'AWS::StackName', 'load balancer security group']]
VpcId: !Ref 'VpcId'
GlobalHttpInbound:
Type: AWS::EC2::SecurityGroupIngress
Properties:
GroupId: !Ref 'ALBSecurityGroup'
IpProtocol: tcp
FromPort: '80'
ToPort: '80'
CidrIp: '0.0.0.0/0'
CloudwatchLogsGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Join ['-', [ECSLogGroup, !Ref 'AWS::StackName']]
RetentionInDays: 14
RDSSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: !Join [" ", [!Ref 'AWS::StackName', 'database security group']]
RetoolECSPostgresInbound:
Type: AWS::EC2::SecurityGroupIngress
Properties:
GroupId: !GetAtt [RDSSecurityGroup, GroupId]
IpProtocol: tcp
FromPort: '5432'
ToPort: '5432'
CidrIp: '0.0.0.0/0'
RetoolTask:
Type: AWS::ECS::TaskDefinition
Properties:
Family: 'retool'
TaskRoleArn: !Ref 'RetoolTaskRole'
ContainerDefinitions:
- Name: 'retool'
Cpu: '1024'
Essential: 'true'
Image: !Ref 'Image'
Memory: '2048'
LogConfiguration:
LogDriver: awslogs
Options:
awslogs-group: !Ref 'CloudwatchLogsGroup'
awslogs-region: !Ref 'AWS::Region'
awslogs-stream-prefix: "SERVICE_RETOOL"
Environment:
- Name: NODE_ENV
Value: production
- Name: SERVICE_TYPE
Value: MAIN_BACKEND,DB_CONNECTOR
- Name: "FORCE_DEPLOYMENT"
Value: !Ref "Force"
- Name: POSTGRES_DB
Value: hammerhead_production
- Name: POSTGRES_HOST
Value: !GetAtt [RetoolRDSInstance, Endpoint.Address]
- Name: POSTGRES_SSL_ENABLED
Value: "true"
- Name: POSTGRES_PORT
Value: "5432"
- Name: POSTGRES_USER
Value: !Join ['', ['{{resolve:secretsmanager:', !Ref RetoolRDSSecret, ':SecretString:username}}' ]]
- Name: POSTGRES_PASSWORD
Value: !Join ['', ['{{resolve:secretsmanager:', !Ref RetoolRDSSecret, ':SecretString:password}}' ]]
- Name: JWT_SECRET
Value: !Join ['', ['{{resolve:secretsmanager:', !Ref RetoolJWTSecret, ':SecretString:password}}' ]]
- Name: ENCRYPTION_KEY
Value: !Join ['', ['{{resolve:secretsmanager:', !Ref RetoolEncryptionKeySecret, ':SecretString:password}}' ]]
- Name: LICENSE_KEY
Value: "EXPIRED-LICENSE-KEY-TRIAL"
# Remove below when serving Retool over https
- Name: COOKIE_INSECURE
Value: "true"
PortMappings:
- ContainerPort: '3000'
HostPort: '80'
Command: ["./docker_scripts/start_api.sh"]
RetoolJobsRunnerTask:
Type: AWS::ECS::TaskDefinition
Properties:
Family: 'retool'
TaskRoleArn: !Ref 'RetoolTaskRole'
ContainerDefinitions:
- Name: 'retool-jobs-runner'
Cpu: '1024'
Essential: 'true'
Image: !Ref 'Image'
Memory: '2048'
LogConfiguration:
LogDriver: awslogs
Options:
awslogs-group: !Ref 'CloudwatchLogsGroup'
awslogs-region: !Ref 'AWS::Region'
awslogs-stream-prefix: "SERVICE_RETOOL"
Environment:
- Name: NODE_ENV
Value: production
- Name: SERVICE_TYPE
Value: JOBS_RUNNER
- Name: "FORCE_DEPLOYMENT"
Value: !Ref "Force"
- Name: POSTGRES_DB
Value: hammerhead_production
- Name: POSTGRES_HOST
Value: !GetAtt [RetoolRDSInstance, Endpoint.Address]
- Name: POSTGRES_SSL_ENABLED
Value: "true"
- Name: POSTGRES_PORT
Value: "5432"
- Name: POSTGRES_USER
Value: !Join ['', ['{{resolve:secretsmanager:', !Ref RetoolRDSSecret, ':SecretString:username}}' ]]
- Name: POSTGRES_PASSWORD
Value: !Join ['', ['{{resolve:secretsmanager:', !Ref RetoolRDSSecret, ':SecretString:password}}' ]]
- Name: JWT_SECRET
Value: !Join ['', ['{{resolve:secretsmanager:', !Ref RetoolJWTSecret, ':SecretString:password}}' ]]
- Name: ENCRYPTION_KEY
Value: !Join ['', ['{{resolve:secretsmanager:', !Ref RetoolEncryptionKeySecret, ':SecretString:password}}' ]]
- Name: LICENSE_KEY
Value: "EXPIRED-LICENSE-KEY-TRIAL"
Command: ["./docker_scripts/start_api.sh"]
RetoolJWTSecret:
Type: AWS::SecretsManager::Secret
Properties:
Description: 'This is the secret for Retool JWTs'
GenerateSecretString:
SecretStringTemplate: '{}'
GenerateStringKey: 'password'
PasswordLength: 16
ExcludeCharacters: '"@/\'
RetoolEncryptionKeySecret:
Type: AWS::SecretsManager::Secret
Properties:
Description: 'This is the secret for encrypting credentials'
GenerateSecretString:
SecretStringTemplate: '{}'
GenerateStringKey: 'password'
PasswordLength: 16
ExcludeCharacters: '"@/\'
RetoolRDSSecret:
Type: AWS::SecretsManager::Secret
Properties:
Description: 'This is the secret for the Retool RDS instance'
GenerateSecretString:
SecretStringTemplate: '{"username": "retool"}'
GenerateStringKey: 'password'
PasswordLength: 16
ExcludeCharacters: '"@/\'
RetoolRDSInstance:
Type: AWS::RDS::DBInstance
Properties:
AllocatedStorage: "80"
DBInstanceClass: "db.m4.large"
Engine: postgres
EngineVersion: "11.12"
DBName: "hammerhead_production"
MasterUsername: !Join ['', ['{{resolve:secretsmanager:', !Ref RetoolRDSSecret, ':SecretString:username}}' ]]
MasterUserPassword: !Join ['', ['{{resolve:secretsmanager:', !Ref RetoolRDSSecret, ':SecretString:password}}' ]]
Port: "5432"
PubliclyAccessible: true
VPCSecurityGroups: [!GetAtt [RDSSecurityGroup, GroupId]]
ECSALB:
Type: AWS::ElasticLoadBalancingV2::LoadBalancer
Properties:
Name: !Join ['-', [!Ref 'AWS::StackName', 'lb']]
Scheme: "internet-facing"
LoadBalancerAttributes:
- Key: idle_timeout.timeout_seconds
Value: '60'
Subnets: !Ref 'SubnetId'
SecurityGroups: [!Ref 'ALBSecurityGroup']
ALBListener:
Type: AWS::ElasticLoadBalancingV2::Listener
DependsOn: RetoolServiceRole
Properties:
DefaultActions:
- Type: forward
TargetGroupArn: !Ref 'ECSTG'
LoadBalancerArn: !Ref 'ECSALB'
Port: '80'
Protocol: HTTP
ECSALBListenerRule:
Type: AWS::ElasticLoadBalancingV2::ListenerRule
DependsOn: ALBListener
Properties:
Actions:
- Type: forward
TargetGroupArn: !Ref 'ECSTG'
Conditions:
- Field: path-pattern
Values: [/]
ListenerArn: !Ref 'ALBListener'
Priority: 1
ECSTG:
Type: AWS::ElasticLoadBalancingV2::TargetGroup
DependsOn: ECSALB
Properties:
HealthCheckIntervalSeconds: 10
HealthCheckPath: '/api/checkHealth'
HealthCheckProtocol: HTTP
HealthCheckTimeoutSeconds: 5
HealthyThresholdCount: 4
Name: !Join ['-', [!Ref 'AWS::StackName', 'tg']]
Port: '80'
Protocol: HTTP
UnhealthyThresholdCount: 2
VpcId: !Ref 'VpcId'
TargetGroupAttributes:
- Key: deregistration_delay.timeout_seconds
Value: '30'
RetoolECSservice:
Type: AWS::ECS::Service
DependsOn: ALBListener
Properties:
Cluster: !Ref 'Cluster'
DesiredCount: !Ref 'DesiredCount'
DeploymentConfiguration:
MaximumPercent: !Ref 'MaximumPercent'
MinimumHealthyPercent: !Ref 'MinimumHealthyPercent'
LoadBalancers:
- ContainerName: 'retool'
ContainerPort: '3000'
TargetGroupArn: !Ref 'ECSTG'
Role: !Ref 'RetoolServiceRole'
TaskDefinition: !Ref 'RetoolTask'
RetoolJobsRunnerECSservice:
Type: AWS::ECS::Service
Properties:
Cluster: !Ref 'Cluster'
DesiredCount: 1
TaskDefinition: !Ref 'RetoolJobsRunnerTask'
RetoolServiceRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: [ecs.amazonaws.com]
Action: ['sts:AssumeRole']
Path: /
Policies:
- PolicyName: !Join ['-', ['Retool', !Ref 'Environment', 'service-policy']]
PolicyDocument:
Statement:
- Effect: Allow
Action: [
'elasticloadbalancing:DeregisterInstancesFromLoadBalancer',
'elasticloadbalancing:DeregisterTargets',
'elasticloadbalancing:Describe*',
'elasticloadbalancing:RegisterInstancesWithLoadBalancer',
'elasticloadbalancing:RegisterTargets',
'ec2:Describe*',
'ec2:AuthorizeSecurityGroupIngress']
Resource: '*'
RetoolTaskRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: ['ecs-tasks.amazonaws.com']
Action: ['sts:AssumeRole']
Path: /
Policies: []
Outputs:
ECSALB:
Description: Your ALB DNS URL
Value: !GetAtt [ECSALB, DNSName]