forked from theburningmonk/manning-aws-lambda-in-motion
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
serverless.yml
297 lines (277 loc) · 9.32 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
service: big-mouth
plugins:
- serverless-pseudo-parameters
- serverless-sam
- serverless-iam-roles-per-function
- serverless-plugin-tracing
- serverless-plugin-canary-deployments
- serverless-plugin-aws-alerts
custom:
stage: ${opt:stage, self:provider.stage}
region: ${opt:region}
logLevel:
prod: WARN
default: DEBUG
serverless-iam-roles-per-function:
defaultInherit: true
alerts:
stages:
- dev
- staging
- production
dashboards: false
alarms:
- functionThrottles
- functionErrors
provider:
name: aws
runtime: nodejs6.10
tracing: true
environment:
log_level: ${self:custom.logLevel.${self:custom.stage}, self:custom.logLevel.default}
STAGE: ${self:custom.stage}
FUNCTION_SHIELD_TOKEN: ${ssm:/bigmouth/${self:custom.stage}/function_shield_token~true}
iamRoleStatements:
- Effect: Allow
Action: cloudwatch:PutMetricData
Resource: '*'
- Effect: Allow
Action:
- 'xray:PutTraceSegments'
- 'xray:PutTelemetryRecords'
Resource: '*'
- Effect: Allow
Action: codedeploy:*
Resource: '*'
functions:
get-index:
handler: functions/get-index.handler
events:
- http:
path: /
method: get
environment:
async_metrics: true
deploymentSettings:
type: Linear10PercentEvery1Minute
alias: Live
alarms:
- GetDashindexFunctionErrorsAlarm
#iamRoleStatementsInherit: true #optionally inherit shared permissions
iamRoleStatements:
- Effect: Allow
Action: execute-api:Invoke
Resource: arn:aws:execute-api:#{AWS::Region}:#{AWS::AccountId}:*/*/GET/restaurants
- Effect: Allow
Action: ssm:GetParameters*
Resource: arn:aws:ssm:#{AWS::Region}:#{AWS::AccountId}:parameter/bigmouth/${self:custom.stage}/*
- Effect: Allow
Action: secretsmanager:GetSecretValue
Resource: arn:aws:secretsmanager:#{AWS::Region}:#{AWS::AccountId}:secret:/bigmouth/${self:custom.stage}/*
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: arn:aws:cognito-idp:#{AWS::Region}:#{AWS::AccountId}:userpool/us-east-1_DfuAwa0vB
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: arn:aws:cognito-idp:#{AWS::Region}:#{AWS::AccountId}:userpool/us-east-1_DfuAwa0vB
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
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
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
user_notification_retry_topic: arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:user-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}:user-notification
- arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:user-notification-retry
retry-notify-user:
handler: functions/retry-notify-user.handler
events:
- sns: user-notification-retry
environment:
order_events_stream: order-events
user_notification_topic: arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:user-notification
onError: arn:aws:sns:#{AWS::Region}:#{AWS::AccountId}:user-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}: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
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
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/*/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
userNotificationTopic:
Type: AWS::SNS::Topic
Properties:
DisplayName: user-notification
TopicName: user-notification
restaurantNotificationDLQTopic:
Type: AWS::SNS::Topic
Properties:
DisplayName: restaurant-notification-dlq
TopicName: restaurant-notification-dlq
userNotificationDLQTopic:
Type: AWS::SNS::Topic
Properties:
DisplayName: user-notification-dlq
TopicName: user-notification-dlq