forked from DefiLlama/peggedassets-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
153 lines (147 loc) · 3.55 KB
/
serverless.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
service: cocoahomology
package:
individually: true
excludeDevDependencies: true
provider:
name: aws
runtime: nodejs14.x
memorySize: 130
region: us-east-1
endpointType: REGIONAL # Set to regional because the api gateway will be behind a cloudfront distribution
stage: dev # Default to dev if no stage is specified
tracing: # Enable X-Ray tracing (debugging)
apiGateway: true
lambda: true
iamRoleStatements:
- Effect: Allow # X-Ray permissions
Action:
- xray:PutTraceSegments
- xray:PutTelemetryRecords
Resource: "*"
- Effect: "Allow"
Action:
- dynamodb:DescribeTable
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
- dynamodb:BatchGetItem
Resource:
- "Fn::GetAtt": [DynamoTable, Arn]
- Effect: Allow # Lambda logs on cloudwatch
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource:
- "Fn::Join":
- ":"
- - "arn:aws:logs"
- Ref: "AWS::Region"
- Ref: "AWS::AccountId"
- "log-group:/aws/lambda/*:*:*"
# For warm-up functions
- Effect: "Allow"
Action:
- "lambda:InvokeFunction"
Resource: "*"
- Effect: "Allow"
Action:
- "s3:ListBucket"
- "s3:*Object*"
Resource: "*"
environment:
DEFILLAMA_SDK_MUTED: true
tableName: ${self:custom.tableName}
stage: ${self:custom.stage}
custom:
stage: ${opt:stage, self:provider.stage}
esbuild:
bundle: true
minify: false
concurrency: 4
# for debugging
#keepOutputDirectory: true
prune:
automatic: true
number: 5 # Number of versions to keep
tableName: prod-table
functions:
fallback:
handler: src/fallback.default
events:
- http:
path: /{params+}
method: any
peggedchart:
handler: src/getPeggedChart.default
timeout: 60
memorySize: 3000
events:
- http:
path: peggedcharts
method: get
- http:
path: peggedcharts/{chain}
method: get
peggeds:
handler: src/getPeggeds.default
timeout: 120
memorySize: 2000
events:
- http:
path: peggeds
method: get
peggedAsset:
handler: src/getPegged.default
timeout: 120
memorySize: 2000
events:
- http:
path: pegged/{pegged}
method: get
peggedchains:
handler: src/getPeggedChains.default
timeout: 60
memorySize: 2000
events:
- http:
path: peggedchains
method: get
peggedprices:
handler: src/getPeggedPrices.default
timeout: 60
memorySize: 2000
events:
- http:
path: peggedprices
method: get
storePeggedAssets:
handler: src/storePeggedAssets.default
timeout: 900
memorySize: 2000
triggerStorePegged:
handler: src/triggerStorePegged.default
timeout: 900
events:
- schedule: cron(0 * * * ? *)
storePeggedPrices:
handler: src/storePeggedPrices.default
timeout: 900
memorySize: 1024
fetchCoingeckoData:
handler: src/fetchCoingeckoData.default
timeout: 900
triggerFetchCoingeckoData:
handler: src/triggerFetchCoingeckoData.default
resources:
# CORS for api gateway errors
- ${file(resources/api-gateway-errors.yml)}
# DynamoDB
- ${file(resources/dynamodb-table.yml)}
plugins:
- serverless-esbuild
- serverless-offline
- serverless-prune-plugin