-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverless.yml
338 lines (312 loc) · 10.1 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
service: big-mouth
plugins:
- serverless-pseudo-parameters
- serverless-sam
- serverless-iam-roles-per-function
- serverless-plugin-tracing
custom:
stage: ${opt:stage, self:provider.stage}
logLevel:
prod: WARN
default: DEBUG
cognitoAuthorizer: arn:aws:cognito-idp:#{AWS::Region}:#{AWS::AccountId}:userpool/us-east-1_DufZfQABc
serverless-iam-roles-per-function:
defaultInherit: true
provider:
name: aws
runtime: nodejs10.x
tracing: true
environment:
STAGE: ${self:custom.stage}
log_level: ${self:custom.logLevel.${self:custom.stage}, self:custom.logLevel.default}
iamRoleStatements:
- Effect: Allow
Action: cloudwatch:PutMetricData
Resource: "*"
- Effect: Allow
Action:
- xray:PutTraceSegments
- xray:PutTelemetryRecords
Resource: '*'
functions:
get-index:
handler: functions/get-index.handler
events:
- http:
path: /
method: get
environment:
restaurants_api: https://e7j9901i64.execute-api.us-east-1.amazonaws.com/dev/restaurants
orders_api: https://e7j9901i64.execute-api.us-east-1.amazonaws.com/dev/orders
cognito_user_pool_id: us-east-1_DufZfQABc
cognito_client_id: 349lgu0a8vhk84pvm0mflngg35
async_metrics: true
iamRoleStatements:
- Effect: Allow
Action: execute-api:Invoke
Resource: arn:aws:execute-api:#{AWS::Region}:#{AWS::AccountId}:*/*/GET/restaurants
get-restaurants:
handler: functions/get-restaurants.handler
events:
- http:
path: /restaurants/
method: get
authorizer: aws_iam
environment:
restaurants_table: restaurants
async_metrics: true
iamRoleStatements:
- Effect: Allow
Action: dynamodb:scan
Resource: arn:aws:dynamodb:#{AWS::Region}:#{AWS::AccountId}:table/restaurants
search-restaurants:
handler: functions/search-restaurants.handler
events:
- http:
path: /restaurants/search
method: post
authorizer:
arn: ${self:custom.cognitoAuthorizer}
environment:
restaurants_table: restaurants
async_metrics: true
iamRoleStatements:
- Effect: Allow
Action: dynamodb:scan
Resource: arn:aws:dynamodb:#{AWS::Region}:#{AWS::AccountId}:table/restaurants
place-order:
handler: functions/place-order.handler
events:
- http:
path: /orders
method: post
authorizer:
arn: ${self:custom.cognitoAuthorizer}
environment:
order_events_stream: order-events
async_metrics: true
iamRoleStatements:
- Effect: Allow
Action: kinesis:PutRecord
Resource: arn:aws:kinesis:#{AWS::Region}:#{AWS::AccountId}:stream/order-events
notify-restaurant:
handler: functions/notify-restaurant.handler
events:
- stream:
arn: arn:aws:kinesis:#{AWS::Region}:#{AWS::AccountId}:stream/order-events
environment:
order_events_stream: order-events
restaurant_notification_topic: arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:restaurant-notification
restaurant_notification_retry_topic: arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:restaurant-notification-retry
iamRoleStatements:
- Effect: Allow
Action: kinesis:PutRecord
Resource: arn:aws:kinesis:#{AWS::Region}:#{AWS::AccountId}:stream/order-events
- Effect: Allow
Action: sns:Publish
Resource:
- arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:restaurant-notification
- arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:restaurant-notification-retry
accept-order:
handler: functions/accept-order.handler
events:
- http:
path: /orders/accept
method: post
environment:
order_events_stream: order-events
async_metrics: true
iamRoleStatements:
- Effect: Allow
Action: kinesis:PutRecord
Resource: arn:aws:kinesis:#{AWS::Region}:#{AWS::AccountId}:stream/order-events
notify-user:
handler: functions/notify-user.handler
events:
- stream:
arn: arn:aws:kinesis:#{AWS::Region}:#{AWS::AccountId}:stream/order-events
environment:
order_events_stream: order-events
user_notification_topic: arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:user-notification
iamRoleStatements:
- Effect: Allow
Action: kinesis:PutRecord
Resource: arn:aws:kinesis:#{AWS::Region}:#{AWS::AccountId}:stream/order-events
- Effect: Allow
Action: sns:Publish
Resource:
- arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:user-notification
fulfill-order:
handler: functions/fulfill-order.handler
events:
- http:
path: orders/complete
method: post
environment:
order_events_stream: order-events
async_metrics: true
iamRoleStatements:
- Effect: Allow
Action: kinesis:PutRecord
Resource: arn:aws:kinesis:#{AWS::Region}:#{AWS::AccountId}:stream/order-events
retry-notify-restaurant:
handler: functions/retry-notify-restaurant.handler
events:
- sns: restaurant-notification-retry
environment:
order_events_stream: order-events
restaurant_notification_topic: arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:restaurant-notification
onError: arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:restaurant-notification-dlq
iamRoleStatements:
- Effect: Allow
Action: kinesis:PutRecord
Resource: arn:aws:kinesis:#{AWS::Region}:#{AWS::AccountId}:stream/order-events
- Effect: Allow
Action: sns:Publish
Resource:
- arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:restaurant-notification
auto-create-api-alarms:
handler: functions/create-alarms.handler
events:
- cloudwatchEvent:
event:
source:
- aws.apigateway
detail-type:
- AWS API Call via CloudTrail
detail:
eventSource:
- apigateway.amazonaws.com
eventName:
- CreateDeployment
tracing: false
environment:
alarm_actions: arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:NotifyMe
ok_actions: arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:NotifyMe
iamRoleStatements:
- Effect: Allow
Action: apigateway:GET
Resource:
- arn:aws:apigateway:#{AWS::Region}::/restapis/*
- arn:aws:apigateway:#{AWS::Region}::/restapis/*/stages/${self:custom.stage}
- Effect: Allow
Action: apigateway:PATCH
Resource:
- arn:aws:apigateway:#{AWS::Region}::/restapis/*
- arn:aws:apigateway:#{AWS::Region}::/restapis/*/stages/${self:custom.stage}
- Effect: Allow
Action: cloudwatch:PutMetricAlarm
Resource: "*"
resources:
Resources:
restaurantsTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: restaurants
AttributeDefinitions:
- AttributeName: name
AttributeType: S
KeySchema:
- AttributeName: name
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1
orderEventsStream:
Type: AWS::Kinesis::Stream
Properties:
Name: order-events
ShardCount: 1
restaurantNotificationTopic:
Type: AWS::SNS::Topic
Properties:
DisplayName: restaurant-notification
TopicName: restaurant-notification
restaurantNotificationDLQTopic:
Type: AWS::SNS::Topic
Properties:
DisplayName: restaurant-notification-dlq
TopicName: restaurant-notification-dlq
userNotificationTopic:
Type: AWS::SNS::Topic
Properties:
DisplayName: user-notification
TopicName: user-notification
# you can overwrite defaults here
# stage: dev
# region: us-east-1
# you can add statements to the Lambda function's IAM Role here
# iamRoleStatements:
# - Effect: "Allow"
# Action:
# - "s3:ListBucket"
# Resource: { "Fn::Join" : ["", ["arn:aws:s3:::", { "Ref" : "ServerlessDeploymentBucket" } ] ] }
# - Effect: "Allow"
# Action:
# - "s3:PutObject"
# Resource:
# Fn::Join:
# - ""
# - - "arn:aws:s3:::"
# - "Ref" : "ServerlessDeploymentBucket"
# - "/*"
# you can define service wide environment variables here
# environment:
# variable1: value1
# you can add packaging information here
#package:
# include:
# - include-me.js
# - include-me-dir/**
# exclude:
# - exclude-me.js
# - exclude-me-dir/**
# The following are a few example events you can configure
# NOTE: Please make sure to change your handler code to work with those events
# Check the event documentation for details
# events:
# - http:
# path: users/create
# method: get
# - websocket: $connect
# - s3: ${env:BUCKET}
# - schedule: rate(10 minutes)
# - sns: greeter-topic
# - stream: arn:aws:dynamodb:region:XXXXXX:table/foo/stream/1970-01-01T00:00:00.000
# - alexaSkill: amzn1.ask.skill.xx-xx-xx-xx
# - alexaSmartHome: amzn1.ask.skill.xx-xx-xx-xx
# - iot:
# sql: "SELECT * FROM 'some_topic'"
# - cloudwatchEvent:
# event:
# source:
# - "aws.ec2"
# detail-type:
# - "EC2 Instance State-change Notification"
# detail:
# state:
# - pending
# - cloudwatchLog: '/aws/lambda/hello'
# - cognitoUserPool:
# pool: MyUserPool
# trigger: PreSignUp
# - alb:
# listenerArn: arn:aws:elasticloadbalancing:us-east-1:XXXXXX:listener/app/my-load-balancer/50dc6c495c0c9188/
# priority: 1
# conditions:
# host: example.com
# path: /hello
# Define function environment variables here
# environment:
# variable2: value2
# you can add CloudFormation resource templates here
#resources:
# Resources:
# NewResource:
# Type: AWS::S3::Bucket
# Properties:
# BucketName: my-new-bucket
# Outputs:
# NewOutput:
# Description: "Description for the output"
# Value: "Some output value"