-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverless.yml
296 lines (271 loc) · 8.05 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
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
service: products-categories-service
frameworkVersion: "2"
provider:
name: aws
stage: ${opt:stage, "dev"}
runtime: nodejs12.x
region: eu-west-1
lambdaHashingVersion: 20201221
apiGateway:
shouldStartNameWithService: true
iam:
role:
statements:
- Effect: Allow
Action:
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
- s3:*
- sns:Publish
Resource: "*"
environment:
PRODUCTS_IMAGES_S3: products-images-1${self:provider.stage}
PRODUCTS_TABLE_NAME: products-${self:provider.stage}
CATEGORIES_TABLE_NAME: categories-${self:provider.stage}
QUEUE_NAME: bought-product-queue-${self:provider.stage}.fifo
DEAD_QUEUE_NAME: dead-bought-product-queue-${self:provider.stage}.fifo
DYNAMODB_CONFIG_FILE_PATH: configs/${self:provider.stage}-dynamo.yml
PRODUCT_EDITED_ARN: arn:aws:sns:eu-west-1:501082649462:ProductEdited.fifo
PRODUCT_DELETED_ARN: arn:aws:sns:eu-west-1:501082649462:ProductDeleted.fifo
variablesResolutionMode: 20210219
package:
individually: true
plugins:
- serverless-webpack
- serverless-dynamodb-local
- serverless-dynamodb-seed
- serverless-offline
functions:
getAllProducts:
handler: src/lambdas/products/getAllProducts.default
events:
- http:
path: products
method: GET
cors: true
createProduct:
handler: src/lambdas/products/createProduct.default
events:
- http:
path: products
method: POST
cors: true
authorizer:
type: COGNITO_USER_POOLS
authorizerId:
Ref: ApiGatewayAuthorizer
getProductById:
handler: src/lambdas/products/getProductById.default
events:
- http:
path: products/{id}
method: GET
cors: true
deleteProduct:
handler: src/lambdas/products/deleteProduct.default
events:
- http:
path: products/{id}
method: DELETE
cors: true
authorizer:
type: COGNITO_USER_POOLS
authorizerId:
Ref: ApiGatewayAuthorizer
editProduct:
handler: src/lambdas/products/editProduct.default
events:
- http:
path: products/{id}
method: PATCH
cors: true
authorizer:
type: COGNITO_USER_POOLS
authorizerId:
Ref: ApiGatewayAuthorizer
updateQuantity:
handler: src/lambdas/products/updateQuantity.default
events:
- sqs:
arn: !GetAtt "BoughtProductQueue.Arn"
getAllCategories:
handler: src/lambdas/categories/getAllCategories.default
events:
- http:
path: categories
method: GET
cors: true
createCategory:
handler: src/lambdas/categories/createCategory.default
events:
- http:
path: categories
method: POST
cors: true
authorizer:
type: COGNITO_USER_POOLS
authorizerId:
Ref: ApiGatewayAuthorizer
editCategory:
handler: src/lambdas/categories/editCategory.default
events:
- http:
path: categories/{id}
method: PATCH
cors: true
authorizer:
type: COGNITO_USER_POOLS
authorizerId:
Ref: ApiGatewayAuthorizer
deleteCategory:
handler: src/lambdas/categories/deleteCategory.default
events:
- http:
path: categories/{id}
method: DELETE
cors: true
authorizer:
type: COGNITO_USER_POOLS
authorizerId:
Ref: ApiGatewayAuthorizer
resources:
Resources:
ProductsImagesS3:
Type: "AWS::S3::Bucket"
Properties:
BucketName: ${self:provider.environment.PRODUCTS_IMAGES_S3}
AccessControl: PublicReadWrite
CorsConfiguration:
CorsRules:
- AllowedHeaders: ["*"]
AllowedMethods: ["POST"]
AllowedOrigins: ["*"]
BoughtProductQueue:
Type: AWS::SQS::Queue
Properties:
QueueName: ${self:provider.environment.QUEUE_NAME}
FifoQueue: true
DelaySeconds: 0
VisibilityTimeout: 30
RedrivePolicy:
deadLetterTargetArn: !GetAtt "DeadBoughtProduct.Arn"
maxReceiveCount: 1
DeadBoughtProduct:
Type: "AWS::SQS::Queue"
Properties:
QueueName: ${self:provider.environment.DEAD_QUEUE_NAME}
FifoQueue: true
MessageRetentionPeriod: 604800 #7 days, should be enough time to fix an issue and retry the messages again in case of a critical issue
SqsBoughtProductPolicy:
Type: AWS::SQS::QueuePolicy
Properties:
Queues:
- Ref: BoughtProductQueue
PolicyDocument:
Statement:
- Effect: Allow
Principal: "*"
Action:
- sqs:SendMessage
Resource: !GetAtt "BoughtProductQueue.Arn"
Condition:
ArnEquals:
"aws:SourceArn": arn:aws:sns:eu-west-1:501082649462:ProductBought.fifo
ProductBoughtTopicSubscription:
Type: AWS::SNS::Subscription
Properties:
Endpoint: !GetAtt "BoughtProductQueue.Arn"
Protocol: "sqs"
TopicArn: arn:aws:sns:eu-west-1:501082649462:ProductBought.fifo
CategoriesTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: ${self:provider.environment.CATEGORIES_TABLE_NAME}
AttributeDefinitions:
- AttributeName: id
AttributeType: S
KeySchema:
- AttributeName: id
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
ProductsTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: ${self:provider.environment.PRODUCTS_TABLE_NAME}
AttributeDefinitions:
- AttributeName: id
AttributeType: S
- AttributeName: _id
AttributeType: S
- AttributeName: name
AttributeType: S
- AttributeName: discountedPrice
AttributeType: N
KeySchema:
- AttributeName: id
KeyType: HASH
GlobalSecondaryIndexes:
- IndexName: NameIndex
KeySchema:
- AttributeName: _id
KeyType: HASH
- AttributeName: name
KeyType: RANGE
Projection:
ProjectionType: "ALL"
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
- IndexName: PriceIndex
KeySchema:
- AttributeName: _id
KeyType: HASH
- AttributeName: discountedPrice
KeyType: RANGE
Projection:
ProjectionType: "ALL"
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
ApiGatewayAuthorizer:
Type: AWS::ApiGateway::Authorizer
Properties:
AuthorizerResultTtlInSeconds: 300
IdentitySource: method.request.header.Authorization
Name: ${self:provider.stage}-product-authorizer
RestApiId:
Ref: ApiGatewayRestApi
Type: COGNITO_USER_POOLS
ProviderARNs:
- !ImportValue ${self:provider.stage}-user-pool-arn
custom:
webpack:
webpackConfig: ./webpack.config.js
includeModules: true
dynamodb:
stages:
- dev
start:
port: 8000
inMemory: true
migrate: true
seed: true
convertEmptyValues: true
migration:
dir: ./offline
seed:
products:
sources:
- table: ${self:provider.environment.PRODUCTS_TABLE_NAME}
sources: [./offline/seeds/products.seed.json]
- table: ${self:provider.environment.CATEGORIES_TABLE_NAME}
sources: [./offline/seeds/categories.seed.json]