-
Notifications
You must be signed in to change notification settings - Fork 3
/
template.yml
528 lines (495 loc) · 16.2 KB
/
template.yml
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
AWSTemplateFormatVersion: 2010-09-09
Description: >-
crypto-bot-commander
Transform:
- AWS::Serverless-2016-10-31
Parameters:
LogLevelParameter:
Type: String
Description: Functions log level
Default: info
AllowedValues:
- debug
- info
EnvironmentParameter:
Type: String
Description: Environment where the stack is deployed
Default: test
AllowedValues:
- test
- prod
TracingParameter:
Description: Boolean to enable or disable tracing
Type: String
Default: false
ExchangesSecretNameParameter:
Description: Name of the exchanges secret stored in Secrets Manager
Type: String
ExchangesSecretEncryptionKeyParameter:
Description: Encryption key used to encrypt the exchanges secret in Secrets Manager (either a key id 'key/xxx' or an alias 'alias/xxx')
Type: String
Default: alias/aws/secretsmanager
Conditions:
TracingCondition: !Equals [ !Ref TracingParameter, true ]
Mappings:
EnvironmentMap:
test:
AvailableSymbols: BNB#BUSD,BTC#BUSD
TriggerAllCandlesticksSchedule: rate(1 minute)
prod:
AvailableSymbols: BNB#BUSD,BTC#BUSD,XRP#BUSD
TriggerAllCandlesticksSchedule: rate(1 minute)
Globals:
Api:
EndpointConfiguration:
Type: EDGE
OpenApiVersion: 3.0.3
TracingEnabled: !Ref TracingParameter
Function:
Runtime: nodejs16.x
MemorySize: 128
Timeout: 10
AutoPublishAlias: Live
Tracing: !If [ TracingCondition, Active, PassThrough ]
Environment:
Variables:
LOG_LEVEL: !Ref LogLevelParameter
ENV: !Ref EnvironmentParameter
REGION: !Ref AWS::Region
TRACING: !Ref TracingParameter
Resources:
InitializeAllCandlesticksFunction:
Type: AWS::Serverless::Function
Properties:
Description: Initialize all candlesticks function
CodeUri: src/handlers
Handler: initialize-all-candlesticks-handler.handler
Timeout: 300
ReservedConcurrentExecutions: 1
EventInvokeConfig:
MaximumRetryAttempts: 0
Environment:
Variables:
EXCHANGES_SECRET_NAME: !Ref ExchangesSecretNameParameter
CANDLESTICK_TABLE_NAME: !Ref CandlestickTable
Policies:
- AWSSecretsManagerGetSecretValuePolicy:
SecretArn: !Sub arn:aws:secretsmanager:${AWS::Region}:${AWS::AccountId}:secret:${ExchangesSecretNameParameter}*
- Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- kms:Decrypt
Resource: !Sub arn:aws:kms:${AWS::Region}:${AWS::AccountId}:${ExchangesSecretEncryptionKeyParameter}
- DynamoDBWritePolicy:
TableName: !Ref CandlestickTable
Metadata:
BuildMethod: esbuild
BuildProperties:
Target: es2021
Minify: true
SourceMap: true
EntryPoints:
- initialize-all-candlesticks-handler.ts
TriggerAllCandlesticksFunction:
Type: AWS::Serverless::Function
Properties:
Description: Trigger all candlesticks function
CodeUri: src/handlers
Handler: trigger-all-candlesticks-handler.handler
EventInvokeConfig:
MaximumRetryAttempts: 0
Environment:
Variables:
AVAILABLE_SYMBOLS: !FindInMap [ EnvironmentMap, !Ref EnvironmentParameter, AvailableSymbols ]
TRIGGERED_CANDLESTICKS_QUEUE_URL: !Ref TriggeredCandlesticksQueue
Events:
ScheduleEvent:
Type: Schedule
Properties:
Enabled: true
Schedule: !FindInMap [ EnvironmentMap, !Ref EnvironmentParameter, TriggerAllCandlesticksSchedule ]
Policies:
- SQSSendMessagePolicy:
QueueName: !GetAtt TriggeredCandlesticksQueue.QueueName
Metadata:
BuildMethod: esbuild
BuildProperties:
Target: es2021
Minify: true
SourceMap: true
EntryPoints:
- trigger-all-candlesticks-handler.ts
UpdateAllCandlesticksFunction:
Type: AWS::Serverless::Function
Properties:
Description: Update all candlesticks function
CodeUri: src/handlers
Handler: update-all-candlesticks-handler.handler
EventInvokeConfig:
MaximumRetryAttempts: 0
Environment:
Variables:
EXCHANGES_SECRET_NAME: !Ref ExchangesSecretNameParameter
CANDLESTICK_TABLE_NAME: !Ref CandlestickTable
UPDATED_CANDLESTICKS_QUEUE_URL: !Ref UpdatedCandlesticksQueue
Events:
SqsEvent:
Type: SQS
Properties:
Enabled: true
Queue: !GetAtt TriggeredCandlesticksQueue.Arn
BatchSize: 5
Policies:
- AWSSecretsManagerGetSecretValuePolicy:
SecretArn: !Sub arn:aws:secretsmanager:${AWS::Region}:${AWS::AccountId}:secret:${ExchangesSecretNameParameter}*
- Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- kms:Decrypt
Resource: !Sub arn:aws:kms:${AWS::Region}:${AWS::AccountId}:${ExchangesSecretEncryptionKeyParameter}
- DynamoDBWritePolicy:
TableName: !Ref CandlestickTable
- SQSSendMessagePolicy:
QueueName: !GetAtt UpdatedCandlesticksQueue.QueueName
Metadata:
BuildMethod: esbuild
BuildProperties:
Target: es2021
Minify: true
SourceMap: true
EntryPoints:
- update-all-candlesticks-handler.ts
PublishAllActiveStrategiesFunction:
Type: AWS::Serverless::Function
Properties:
Description: Publish all active strategies function
CodeUri: src/handlers
Handler: publish-all-active-strategies-handler.handler
EventInvokeConfig:
MaximumRetryAttempts: 0
Environment:
Variables:
STRATEGY_TABLE_NAME: !Ref StrategyTable
ACTIVE_STRATEGIES_QUEUE_URL: !Ref ActiveStrategiesQueue
Events:
SqsEvent:
Type: SQS
Properties:
Enabled: true
Queue: !GetAtt UpdatedCandlesticksQueue.Arn
BatchSize: 5
Policies:
- DynamoDBReadPolicy:
TableName: !Ref StrategyTable
- SQSPollerPolicy:
QueueName: !GetAtt UpdatedCandlesticksQueue.QueueName
- SQSSendMessagePolicy:
QueueName: !GetAtt ActiveStrategiesQueue.QueueName
Metadata:
BuildMethod: esbuild
BuildProperties:
Target: es2021
Minify: true
SourceMap: true
EntryPoints:
- publish-all-active-strategies-handler.ts
EvaluateStrategyFunction:
Type: AWS::Serverless::Function
Properties:
Description: Evaluate strategy function
CodeUri: src/handlers
Handler: evaluate-strategy-handler.handler
MemorySize: 1024
EventInvokeConfig:
MaximumRetryAttempts: 0
Environment:
Variables:
EXCHANGES_SECRET_NAME: !Ref ExchangesSecretNameParameter
CANDLESTICK_TABLE_NAME: !Ref CandlestickTable
STRATEGY_TABLE_NAME: !Ref StrategyTable
ORDER_TABLE_NAME: !Ref OrderTable
PROCESSED_STRATEGY_STEP_QUEUE_URL: !Ref ProcessedStrategyStepQueue
Events:
SqsEvent:
Type: SQS
Properties:
Enabled: true
Queue: !GetAtt ActiveStrategiesQueue.Arn
BatchSize: 1
Policies:
- AWSSecretsManagerGetSecretValuePolicy:
SecretArn: !Sub arn:aws:secretsmanager:${AWS::Region}:${AWS::AccountId}:secret:${ExchangesSecretNameParameter}*
- Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- kms:Decrypt
Resource: !Sub arn:aws:kms:${AWS::Region}:${AWS::AccountId}:${ExchangesSecretEncryptionKeyParameter}
- DynamoDBReadPolicy:
TableName: !Ref CandlestickTable
- DynamoDBReadPolicy:
TableName: !Ref StrategyTable
- DynamoDBWritePolicy:
TableName: !Ref StrategyTable
- DynamoDBWritePolicy:
TableName: !Ref OrderTable
- SQSPollerPolicy:
QueueName: !GetAtt ActiveStrategiesQueue.QueueName
- SQSSendMessagePolicy:
QueueName: !GetAtt ProcessedStrategyStepQueue.QueueName
Metadata:
BuildMethod: esbuild
BuildProperties:
Target: es2021
Minify: true
SourceMap: true
EntryPoints:
- evaluate-strategy-handler.ts
ApiV1:
Type: AWS::Serverless::Api
Properties:
StageName: !Ref EnvironmentParameter
Auth:
UsagePlan:
CreateUsagePlan: PER_API
Quota:
Period: DAY
Limit: 500
Throttle:
RateLimit: 5
BurstLimit: 5
DefinitionBody:
Fn::Transform:
Name: AWS::Include
Parameters:
Location: ./api/openapi.yml
GetAllCandlesticksFunction:
Type: AWS::Serverless::Function
Properties:
Description: Get all candlesticks function
CodeUri: src/handlers
Handler: get-all-candlesticks-handler.handler
MemorySize: 1024
Environment:
Variables:
CANDLESTICK_TABLE_NAME: !Ref CandlestickTable
AVAILABLE_SYMBOLS: !FindInMap [ EnvironmentMap, !Ref EnvironmentParameter, AvailableSymbols ]
Events:
ApiEvent:
Type: Api
Properties:
RestApiId: !Ref ApiV1
Path: /candlesticks
Method: GET
Policies:
- DynamoDBReadPolicy:
TableName: !Ref CandlestickTable
Metadata:
BuildMethod: esbuild
BuildProperties:
Target: es2021
Minify: true
SourceMap: true
EntryPoints:
- get-all-candlesticks-handler.ts
CandlestickTable:
Type: AWS::DynamoDB::Table
Properties:
BillingMode: PROVISIONED
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1
SSESpecification:
SSEEnabled: true
KeySchema:
- AttributeName: pk
KeyType: HASH
- AttributeName: sk
KeyType: RANGE
AttributeDefinitions:
- AttributeName: pk
AttributeType: S
- AttributeName: sk
AttributeType: S
StrategyTable:
Type: AWS::DynamoDB::Table
Properties:
BillingMode: PAY_PER_REQUEST
SSESpecification:
SSEEnabled: true
KeySchema:
- AttributeName: pk
KeyType: HASH
- AttributeName: sk
KeyType: RANGE
AttributeDefinitions:
- AttributeName: pk
AttributeType: S
- AttributeName: sk
AttributeType: S
- AttributeName: symbolStatusPk
AttributeType: S
- AttributeName: symbolStatusSk
AttributeType: S
- AttributeName: stepsListPk
AttributeType: S
- AttributeName: stepsListSk
AttributeType: N
GlobalSecondaryIndexes:
- IndexName: SymbolStatus-Index
KeySchema:
- AttributeName: symbolStatusPk
KeyType: HASH
- AttributeName: symbolStatusSk
KeyType: RANGE
Projection:
ProjectionType: KEYS_ONLY
- IndexName: StepsList-Index
KeySchema:
- AttributeName: stepsListPk
KeyType: HASH
- AttributeName: stepsListSk
KeyType: RANGE
Projection:
ProjectionType: ALL
OrderTable:
Type: AWS::DynamoDB::Table
Properties:
BillingMode: PAY_PER_REQUEST
SSESpecification:
SSEEnabled: true
KeySchema:
- AttributeName: pk
KeyType: HASH
- AttributeName: sk
KeyType: RANGE
AttributeDefinitions:
- AttributeName: pk
AttributeType: S
- AttributeName: sk
AttributeType: S
TriggeredCandlesticksQueue:
Type: AWS::SQS::Queue
Properties:
VisibilityTimeout: 60
MessageRetentionPeriod: 60
UpdatedCandlesticksQueue:
Type: AWS::SQS::Queue
Properties:
VisibilityTimeout: 60
MessageRetentionPeriod: 60
FifoQueue: true
DeduplicationScope: messageGroup
FifoThroughputLimit: perMessageGroupId
ActiveStrategiesQueue:
Type: AWS::SQS::Queue
Properties:
VisibilityTimeout: 60
MessageRetentionPeriod: 60
FifoQueue: true
DeduplicationScope: messageGroup
FifoThroughputLimit: perMessageGroupId
ProcessedStrategyStepQueue:
Type: AWS::SQS::Queue
Properties:
VisibilityTimeout: 60
MessageRetentionPeriod: 60
FifoQueue: true
DeduplicationScope: messageGroup
FifoThroughputLimit: perMessageGroupId
Outputs:
InitializeAllCandlesticksFunctionName:
Description: Initialize all candlesticks function name
Value: !Ref InitializeAllCandlesticksFunction
InitializeAllCandlesticksFunctionArn:
Description: Initialize all candlesticks function name
Value: !Ref InitializeAllCandlesticksFunction
UpdateAllCandlesticksFunctionName:
Description: Update all candlesticks function name
Value: !Ref UpdateAllCandlesticksFunction
UpdateAllCandlesticksFunctionArn:
Description: Update all candlesticks function name
Value: !Ref UpdateAllCandlesticksFunction
PublishAllActiveStrategiesFunctionName:
Description: Publish all active strategies function name
Value: !Ref PublishAllActiveStrategiesFunction
PublishAllActiveStrategiesFunctionArn:
Description: Publish all active strategies function ARN
Value: !GetAtt PublishAllActiveStrategiesFunction.Arn
EvaluateStrategyFunctionName:
Description: Evaluate strategy function name
Value: !Ref EvaluateStrategyFunction
EvaluateStrategyFunctionArn:
Description: Evaluate strategy function ARN
Value: !GetAtt EvaluateStrategyFunction.Arn
ApiV1Id:
Description: API v1 ID
Value: !Ref ApiV1
ApiV1Url:
Description: API v1 URL
Value: !Sub https://${ApiV1}.execute-api.${AWS::Region}.amazonaws.com/${EnvironmentParameter}/
ApiV1RootResourceId:
Description: API v1 root resource ID
Value: !GetAtt ApiV1.RootResourceId
GetAllCandlesticksFunctionName:
Description: Get all candlesticks function name
Value: !Ref GetAllCandlesticksFunction
GetAllCandlesticksFunctionArn:
Description: Get all candlesticks function ARN
Value: !GetAtt GetAllCandlesticksFunction.Arn
CandlestickTableName:
Description: Candlestick table name
Value: !Ref CandlestickTable
CandlestickTableArn:
Description: Candlestick table ARN
Value: !GetAtt CandlestickTable.Arn
StrategyTableName:
Description: Strategy table name
Value: !Ref StrategyTable
StrategyTableArn:
Description: Strategy table ARN
Value: !GetAtt StrategyTable.Arn
OrderTableName:
Description: Order table name
Value: !Ref OrderTable
OrderTableArn:
Description: Order table ARN
Value: !GetAtt OrderTable.Arn
TriggeredCandlesticksQueueName:
Description: Triggered candlesticks queue name
Value: !GetAtt TriggeredCandlesticksQueue.QueueName
TriggeredCandlesticksQueueArn:
Description: Triggered candlesticks queue ARN
Value: !GetAtt TriggeredCandlesticksQueue.Arn
TriggeredCandlesticksQueueUrl:
Description: Triggered candlesticks queue URL
Value: !Ref TriggeredCandlesticksQueue
UpdatedCandlesticksQueueName:
Description: Updated candlesticks queue name
Value: !GetAtt UpdatedCandlesticksQueue.QueueName
UpdatedCandlesticksQueueArn:
Description: Updated candlesticks queue ARN
Value: !GetAtt UpdatedCandlesticksQueue.Arn
UpdatedCandlesticksQueueUrl:
Description: Updated candlesticks queue URL
Value: !Ref UpdatedCandlesticksQueue
ActiveStrategiesQueueName:
Description: Active strategies queue name
Value: !GetAtt ActiveStrategiesQueue.QueueName
ActiveStrategiesQueueArn:
Description: Active strategies queue ARN
Value: !GetAtt ActiveStrategiesQueue.Arn
ActiveStrategiesQueueUrl:
Description: Active strategies queue URL
Value: !Ref ActiveStrategiesQueue
ProcessedStrategyStepQueueName:
Description: Processed strategy step queue name
Value: !GetAtt ProcessedStrategyStepQueue.QueueName
ProcessedStrategyStepQueueArn:
Description: Processed strategy step queue ARN
Value: !GetAtt ProcessedStrategyStepQueue.Arn
ProcessedStrategyStepQueueUrl:
Description: Processed strategy step queue URL
Value: !Ref ProcessedStrategyStepQueue