-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverless.yml
341 lines (328 loc) · 9.94 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
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
service: hungry
frameworkVersion: '2'
provider:
name: aws
runtime: nodejs12.x
region: eu-west-1
environment:
STAGE: ${self:custom.stage}
REST_API_URL:
Fn::Join:
- ''
- - https://
- !Ref ApiGatewayRestApi
- .execute-api.${self:provider.region}.amazonaws.com/${self:custom.stage}
SERVICE_NAME: ${self:service}
LOG_LEVEL: ${self:custom.logLevel.${self:custom.stage}, self:custom.logLevel.default}
SAMPLE_DEBUG_LOG_RATE: 0.1
AWS_NODEJS_CONNECTION_REUSE_ENABLED: 1
eventBridge:
useCloudFormation: true
tracing:
apiGateway: true
lambda: true
iamRoleStatements:
- Effect: Allow
Action:
- 'xray:PutTraceSegments'
- 'xray:PutTelemetryRecords'
Resource: '*'
plugins:
- serverless-export-env
- serverless-export-outputs
- serverless-iam-roles-per-function
- serverless-lumigo
custom:
stage: ${opt:stage, self:provider.stage}
export-env:
overwrite: true
exportOutputs:
include:
- E2eTestQueueUrl
output:
file: ./.env.outputs
logLevel:
prod: INFO
default: DEBUG
serverless-iam-roles-per-function:
defaultInherit: true
lumigo:
token: ${ssm:/lumigo/tracing-token}
nodePackageManager: npm
skipInstallNodeTracer: true
functions:
get-index:
handler: src/functions/get-index.handler
memorySize: 128
environment:
RESTAURANTS_API:
Fn::Join:
- ''
- - https://
- !Ref ApiGatewayRestApi
- .execute-api.${self:provider.region}.amazonaws.com/${self:custom.stage}/restaurants
ORDERS_API:
Fn::Join:
- ''
- - https://
- !Ref ApiGatewayRestApi
- .execute-api.${self:provider.region}.amazonaws.com/${self:custom.stage}/orders
COGNITO_USER_POOL_ID: !Ref CognitoUserPool
COGNITO_CLIENT_ID: !Ref WebCognitoUserPoolClient
COGNITO_SERVER_CLIENT_ID: !Ref ServerCognitoUserPoolClient
events:
- http:
path: /
method: get
iamRoleStatements:
- Effect: Allow
Action: execute-api:Invoke
Resource: !Sub arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${ApiGatewayRestApi}/${self:custom.stage}/GET/restaurants
get-restaurants:
handler: src/functions/get-restaurants.handler
memorySize: 512
events:
- http:
path: /restaurants
method: get
authorizer: aws_iam
environment:
RESTAURANTS_TABLE: !Ref RestaurantsTable
iamRoleStatements:
- Effect: Allow
Action: dynamodb:scan
Resource: !GetAtt RestaurantsTable.Arn
- Effect: Allow
Action: ssm:GetParameters*
Resource: !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/${self:service}/${self:custom.stage}/get-restaurants/config
search-restaurants:
handler: src/functions/search-restaurants.handler
events:
- http:
path: /restaurants/search
method: post
authorizer:
name: CognitoAuthorizer
type: COGNITO_USER_POOLS
arn: !GetAtt CognitoUserPool.Arn
environment:
RESTAURANTS_TABLE: !Ref RestaurantsTable
iamRoleStatements:
- Effect: Allow
Action: dynamodb:scan
Resource: !GetAtt RestaurantsTable.Arn
- Effect: Allow
Action: ssm:GetParameters*
Resource:
- !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/${self:service}/${self:custom.stage}/search-restaurants/config
- !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/${self:service}/${self:custom.stage}/search-restaurants/secretString
- Effect: Allow
Action: kms:Decrypt
Resource: ${ssm:/dev/kmsArn}
place-order:
handler: src/functions/place-order.handler
events:
- http:
path: /orders
method: post
authorizer:
name: CognitoAuthorizer
type: COGNITO_USER_POOLS
arn: !GetAtt CognitoUserPool.Arn
environment:
BUS_NAME: !Ref EventBus
iamRoleStatements:
- Effect: Allow
Action: events:PutEvents
Resource: !GetAtt EventBus.Arn
notify-restaurant:
handler: src/functions/notify-restaurant.handler
events:
- eventBridge:
eventBus: !Ref EventBus
pattern:
source:
- hungry
detail-type:
- order_placed
environment:
BUS_NAME: !Ref EventBus
RESTAURANT_NOTIFICATION_TOPIC: !Ref RestaurantNotificationTopic
iamRoleStatements:
- Effect: Allow
Action: events:PutEvents
Resource: !GetAtt EventBus.Arn
- Effect: Allow
Action: sns:Publish
Resource: !Ref RestaurantNotificationTopic
resources:
Conditions:
IsE2eTest:
Fn::Equals:
- ${self:custom.stage}
- dev
Resources:
RestaurantsTable:
Type: AWS::DynamoDB::Table
Properties:
BillingMode: PAY_PER_REQUEST
AttributeDefinitions:
- AttributeName: name
AttributeType: S
KeySchema:
- AttributeName: name
KeyType: HASH
CognitoUserPool:
Type: AWS::Cognito::UserPool
Properties:
UserPoolName: ${self:custom.stage}-${self:service}-user-pool
AliasAttributes:
- email
UsernameConfiguration:
CaseSensitive: false
AutoVerifiedAttributes:
- email
Policies:
PasswordPolicy:
MinimumLength: 8
RequireLowercase: true
RequireNumbers: true
RequireUppercase: true
RequireSymbols: true
Schema:
- AttributeDataType: String
Mutable: true
Name: given_name
Required: true
StringAttributeConstraints:
MinLength: '1'
- AttributeDataType: String
Mutable: true
Name: family_name
Required: true
StringAttributeConstraints:
MinLength: '1'
- AttributeDataType: String
Mutable: true
Name: email
Required: true
StringAttributeConstraints:
MinLength: '1'
WebCognitoUserPoolClient:
Type: AWS::Cognito::UserPoolClient
Properties:
ClientName: ${self:service}-web
UserPoolId: !Ref CognitoUserPool
ExplicitAuthFlows:
- ALLOW_USER_SRP_AUTH
- ALLOW_REFRESH_TOKEN_AUTH
PreventUserExistenceErrors: ENABLED
ServerCognitoUserPoolClient:
Type: AWS::Cognito::UserPoolClient
Properties:
ClientName: ${self:service}-server
UserPoolId: !Ref CognitoUserPool
ExplicitAuthFlows:
- ALLOW_ADMIN_USER_PASSWORD_AUTH
- ALLOW_REFRESH_TOKEN_AUTH
PreventUserExistenceErrors: ENABLED
ServiceUrlParameter:
Type: AWS::SSM::Parameter
Properties:
Type: String
Name: /${self:service}/${self:custom.stage}/serviceUrl
Value:
Fn::Join:
- ''
- - https://
- !Ref ApiGatewayRestApi
- .execute-api.${self:provider.region}.amazonaws.com/${self:custom.stage}
EventBus:
Type: AWS::Events::EventBus
Properties:
Name: order_events_${self:custom.stage}
RestaurantNotificationTopic:
Type: AWS::SNS::Topic
E2eTestQueue:
Type: AWS::SQS::Queue
Condition: IsE2eTest
Properties:
MessageRetentionPeriod: 60 # seconds
VisibilityTimeout: 1 # seconds
E2eTestQueuePolicy:
Type: AWS::SQS::QueuePolicy
Condition: IsE2eTest
Properties:
Queues:
- !Ref E2eTestQueue
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal: '*'
Action: SQS:SendMessage
Resource: !GetAtt E2eTestQueue.Arn
Condition:
ArnEquals:
aws:SourceArn: !Ref RestaurantNotificationTopic
- Effect: Allow
Principal: '*'
Action: SQS:SendMessage
Resource: !GetAtt E2eTestQueue.Arn
Condition:
ArnEquals:
aws:SourceArn: !GetAtt E2eTestEventBridgeRule.Arn
E2eTestSnsSubscription:
Type: AWS::SNS::Subscription
Condition: IsE2eTest
Properties:
Protocol: sqs
Endpoint: !GetAtt E2eTestQueue.Arn
RawMessageDelivery: false # adds complete information about the message, not just the content
Region: !Ref AWS::Region
TopicArn: !Ref RestaurantNotificationTopic
E2eTestEventBridgeRule:
Type: AWS::Events::Rule
Condition: IsE2eTest
Properties:
EventBusName: !Ref EventBus
EventPattern:
source: ['hungry']
State: ENABLED
Targets:
- Arn: !GetAtt E2eTestQueue.Arn
Id: e2eTestQueue
InputTransformer:
InputPathsMap:
source: '$.source'
detailType: '$.detail-type'
detail: '$.detail'
InputTemplate: !Sub >
{
"event": {
"source": <source>,
"detail-type": <detailType>,
"detail": <detail>
},
"eventBusName": "${EventBus}"
}
Outputs:
RestaurantsTableName:
Value: !Ref RestaurantsTable
CognitoUserPoolId:
Value: !Ref CognitoUserPool
CognitoUserPoolArn:
Value: !GetAtt CognitoUserPool.Arn
CognitoUserPoolWebClientId:
Value: !Ref WebCognitoUserPoolClient
CognitoUserPoolServerClientId:
Value: !Ref ServerCognitoUserPoolClient
EventBusName:
Value: !Ref EventBus
RestaurantNotificationTopicName:
Value: !GetAtt RestaurantNotificationTopic.TopicName
RestaurantNotificationTopicArn:
Value: !Ref RestaurantNotificationTopic
E2eTestQueueUrl:
Condition: IsE2eTest
Value: !Ref E2eTestQueue