-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverless.yml
265 lines (248 loc) · 7.66 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
service: workshop-${self:custom.name}
custom:
name: 'alexs'
email: '[email protected]'
stage: ${opt:stage, self:provider.stage}
logLevel:
prod: ERROR
default: INFO
serverless-iam-roles-per-function:
defaultInherit: true
provider:
name: aws
runtime: nodejs12.x
tracing:
apiGateway: true
lambda: true
environment:
AWS_NODEJS_CONNECTION_REUSE_ENABLED: 1
SAMPLE_DEBUG_LOG_RATE: 0.4
serviceName: ${self:service}
stage: ${self:custom.stage}
LOG_LEVEL: ${self:custom.logLevel.${self:custom.stage}, self:custom.logLevel.default}
rootUrl:
Fn::Join:
- ""
- - https://
- !Ref ApiGatewayRestApi
- .execute-api.${self:provider.region}.amazonaws.com/${self:custom.stage}
iamRoleStatements:
- Effect: Allow
Action:
- "xray:PutTraceSegments"
- "xray:PutTelemetryRecords"
Resource: "*"
functions:
get-index:
handler: functions/get-index.handler
events:
- http:
path: /
method: get
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
iamRoleStatements:
- Effect: Allow
Action: execute-api:Invoke
Resource: arn:aws:execute-api:#{AWS::Region}:#{AWS::AccountId}:#{ApiGatewayRestApi}/${self:custom.stage}/GET/restaurants
get-restaurants:
handler: functions/get-restaurants.handler
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: arn:aws:ssm:#{AWS::Region}:#{AWS::AccountId}:parameter/${self:service}/${self:custom.stage}/get-restaurants/config
search-restaurants:
handler: functions/search-restaurants.handler
events:
- http:
path: /restaurants/search
method: post
authorizer:
type: COGNITO_USER_POOLS
authorizerId: !Ref CognitoAuthorizer
environment:
restaurants_table: !Ref RestaurantsTable
iamRoleStatements:
- Effect: Allow
Action: dynamodb:scan
Resource: !GetAtt RestaurantsTable.Arn
- Effect: Allow
Action: ssm:GetParameters*
Resource:
- arn:aws:ssm:#{AWS::Region}:#{AWS::AccountId}:parameter/${self:service}/${self:custom.stage}/search-restaurants/config
- 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: functions/place-order.handler
events:
- http:
path: /orders
method: post
authorizer:
type: COGNITO_USER_POOLS
authorizerId: !Ref CognitoAuthorizer
environment:
bus_name: !Ref EventBus
iamRoleStatements:
- Effect: Allow
Action: events:PutEvents
Resource: "*"
notify-restaurant:
handler: functions/notify-restaurant.handler
events:
- eventBridge:
eventBus: arn:aws:events:#{AWS::Region}:#{AWS::AccountId}:event-bus/order_events_${self:custom.stage}
pattern:
source:
- big-mouth
detail-type:
- order_placed
environment:
bus_name: !Ref EventBus
restaurant_notification_topic: !Ref RestaurantNotificationTopic
iamRoleStatements:
- Effect: Allow
Action: events:PutEvents
Resource: "*"
- Effect: Allow
Action: sns:Publish
Resource: !Ref RestaurantNotificationTopic
resources:
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:
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: web
UserPoolId: !Ref CognitoUserPool
ExplicitAuthFlows:
- ALLOW_USER_SRP_AUTH
- ALLOW_REFRESH_TOKEN_AUTH
PreventUserExistenceErrors: ENABLED
ServerCognitoUserPoolClient:
Type: AWS::Cognito::UserPoolClient
Properties:
ClientName: server
UserPoolId: !Ref CognitoUserPool
ExplicitAuthFlows:
- ALLOW_ADMIN_USER_PASSWORD_AUTH
- ALLOW_REFRESH_TOKEN_AUTH
PreventUserExistenceErrors: ENABLED
CognitoAuthorizer:
Type: AWS::ApiGateway::Authorizer
Properties:
AuthorizerResultTtlInSeconds: 300
IdentitySource: method.request.header.Authorization
Name: Cognito
RestApiId: !Ref ApiGatewayRestApi
Type: COGNITO_USER_POOLS
ProviderARNs:
- !GetAtt CognitoUserPool.Arn
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
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
plugins:
- serverless-export-env
- serverless-pseudo-parameters
- serverless-iam-roles-per-function