forked from DefiLlama/peggedassets-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverless.yml
216 lines (210 loc) · 5.01 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
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
service: llama-stablecoins
package:
individually: true
excludeDevDependencies: true
provider:
name: aws
runtime: nodejs14.x
memorySize: 130
region: eu-central-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-stablecoins-table
domain: stablecoins.llama.fi
certificateArn: "arn:aws:acm:us-east-1:856461987125:certificate/b4209013-30a6-417e-847e-6e630c3e77fe"
hostedZone: llama.fi
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
stablecoinChart:
handler: src/getStablecoinChart.default
timeout: 60
memorySize: 3000
events:
- http:
path: stablecoincharts/{chain}
method: get
stablecoinDominance:
handler: src/getChainDominance.default
timeout: 60
memorySize: 3000
events:
- http:
path: stablecoindominance/{chain}
method: get
peggeds:
handler: src/getPeggeds.default
timeout: 120
memorySize: 2000
events:
- http:
path: peggeds
method: get
stablecoins:
handler: src/getStablecoins.default
timeout: 120
memorySize: 3000
events:
- http:
path: stablecoins
method: get
config:
handler: src/config.default
timeout: 120
memorySize: 2000
events:
- http:
path: config
method: get
peggedAsset:
handler: src/getPegged.default
timeout: 120
memorySize: 2000
events:
- http:
path: pegged/{pegged}
method: get
stablecoin:
handler: src/getStablecoin.default
timeout: 120
memorySize: 2000
events:
- http:
path: stablecoin/{stablecoin}
method: get
peggedchains:
handler: src/getPeggedChains.default
timeout: 60
memorySize: 2000
events:
- http:
path: peggedchains
method: get
stablecoinchains:
handler: src/getStablecoinChains.default
timeout: 60
memorySize: 2000
events:
- http:
path: stablecoinchains
method: get
peggedprices:
handler: src/getPeggedPrices.default
timeout: 60
memorySize: 2000
events:
- http:
path: peggedprices
method: get
stablecoinprices:
handler: src/getStablecoinPrices.default
timeout: 60
memorySize: 2000
events:
- http:
path: stablecoinprices
method: get
storeRates:
handler: src/storeRates.default
timeout: 60
memorySize: 3000
events:
- schedule: cron(30 0 * * ? *)
storePeggedAssets:
handler: src/storePeggedAssets.default
timeout: 900
memorySize: 3000
triggerStorePegged:
handler: src/triggerStorePegged.default
timeout: 900
memorySize: 2000
events:
- schedule: cron(40 * * * ? *)
storePeggedPrices:
handler: src/storePeggedPrices.default
timeout: 900
memorySize: 3000
events:
- schedule: cron(15/30 * * * ? *)
resources:
# DynamoDB and api gateway errors
- ${file(resources/table-and-api.yml)}
# Cloudfront API distribution
- ${file(resources/api-cloudfront-distribution.yml)}
plugins:
- serverless-esbuild
- serverless-offline
- serverless-prune-plugin