-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
188 lines (165 loc) · 5.14 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
service: currency-alarm-api
provider:
name: aws
runtime: nodejs12.x
stage: ${opt:stage, 'dev'}
region: eu-west-1
timeout: 5
memorySize: 256
apiGateway:
minimumCompressionSize: 1024
shouldStartNameWithService: true
tracing:
apiGateway: true
lambda: true
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:DescribeTable
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
Resource: !GetAtt CurrencyRatesTable.Arn
environment:
EXCEPTION_REPORT_TOPIC_ARN: !Ref ExceptionReportTopic
CURRENCY_RATES_TABLE_NAME: "CurrencyRatesTable"
FREE_CURRCONV_API_KEY: ${env:FREE_CURRCONV_API_KEY}
RATES_API_KEY: ${env:RATES_API_KEY}
package:
individually: true
plugins:
- serverless-webpack
- serverless-offline
- serverless-dotenv-plugin
- serverless-dynamodb-local
- serverless-jest-plugin
- serverless-reqvalidator-plugin
custom:
webpack:
webpackConfig: 'webpack.config.js'
includeModules: true
keepOutputDirectory: true
packager: 'npm'
dotenv:
required:
file: true
documentation: ${file(docs.yml)}
functions:
convertCurrency:
handler: src/convert-currency.convertCurrency
events:
- http:
documentation:
summary: "Currency converter"
description: "convert FROM -> TO with AMOUNT"
tags:
- Converter
- Currency
queryParams:
- name: "from"
description: "exchange FROM (e.g USD)"
- name: "to"
description: "exchange TO (e.g RUB)"
- name: "amount"
description: "without comments (e.g 100)"
methodResponses:
- statusCode: "200"
responseModels:
"application/json": "ConverterSuccessResponse"
- statusCode: "400"
responseModels:
"application/json": "400ValidationResponse"
- statusCode: "500"
responseModels:
"application/json": "500InternalError"
path: convert-currency
method: get
cors: true
reqValidatorName: RequestValidator
request:
passThrough: WHEN_NO_TEMPLATES
parameters:
querystrings:
from: true
to: true
amount: true
getCurrencyRates:
handler: src/get-currency-rate.getCurrencyRates
events:
- http:
documentation:
summary: "Get Currency Rate"
description: "get rate by BASE"
tags:
- Rate
- Currency
queryParams:
- name: "base"
description: "base unit"
path: get-currency-rate # /rate/{base}, todo, later
method: get
cors: true
reqValidatorName: RequestValidator
request:
passThrough: WHEN_NO_TEMPLATES
parameters:
querystrings:
base: true
updateCurrencyQuotesScheduler:
handler: src/update-currency-quotes.updateCurrencyQuotes
events:
- schedule: rate(1 hour) ## TODO strict options
resources:
Resources:
ExceptionReportTopic:
Type: AWS::SNS::Topic
Properties:
DisplayName: "[CurrencyAPI Subscription] Exception reports"
TopicName: exception-reports
# -> https://docs.aws.amazon.com/sns/latest/dg/sns-subscription-filter-policies.html
ExceptionReportEmailSubscription:
Type: AWS::SNS::Subscription
Properties:
TopicArn: !Ref ExceptionReportTopic
Protocol: email
Endpoint: Daniil_Shurygin@epam.com
RequestValidator:
Type: "AWS::ApiGateway::RequestValidator"
Properties:
Name: 'request-params-validator'
RestApiId:
Ref: ApiGatewayRestApi # implicitly
ValidateRequestBody: true
ValidateRequestParameters: true
InvalidRequestParamsGatewayResponse:
Type: AWS::ApiGateway::GatewayResponse
Properties:
RestApiId:
Ref: ApiGatewayRestApi # implicitly
ResponseType: BAD_REQUEST_PARAMETERS
StatusCode: 400
ResponseTemplates:
application/json: |
{
"success": false,
"message": "$context.error.message",
}
CurrencyRatesTable:
Type: AWS::DynamoDB::Table
DeletionPolicy: Delete
Properties:
TableName: ${self:provider.environment.CURRENCY_RATES_TABLE_NAME}
AttributeDefinitions:
- AttributeName: currencyType
AttributeType: S
- AttributeName: date
AttributeType: S
KeySchema:
- AttributeName: currencyType
KeyType: HASH
- AttributeName: date
KeyType: RANGE # same partition
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1