-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverless.yml
214 lines (199 loc) · 6.03 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
service:
name: udacity-backend-todo
custom:
webpack:
webpackConfig: ./webpack.config.js
includeModules: true
documentation:
api:
info:
version: v1.0.0
title: Udacity Todo
description: Todo for Udacity Nanodegree Project
models:
- name: TodoRequest
contentType: application/json
schema: ${file(models/create-todo-request.json)}
plugins:
- serverless-webpack
- serverless-iam-roles-per-function
- serverless-plugin-tracing
provider:
name: aws
runtime: nodejs12.x
stage: ${opt:stage, 'dev'}
region: ${opt:region, 'us-east-1'}
apiGateway:
minimumCompressionSize: 1024 # Enable gzip compression for responses > 1 KB
environment:
AWS_NODEJS_CONNECTION_REUSE_ENABLED: 1
TODOS_TABLE: Todos-${self:provider.stage}
TODOS_USER_INDEX: TodoUserIndex
TODOS_IMAGES_S3_BUCKET: udacity-backend-images-${self:provider.stage}
TODOS_SIGNED_URL_EXPIRATION: 300
tracing:
lambda: true
apiGateway: true
iamRoleStatements:
- Effect: Allow
Action:
- 'xray:PutTraceSegments'
- 'xray:PutTelemetryRecords'
Resource: '*'
# - Effect: Allow
# Action:
# - dynamodb:Query
# Resource: arn:aws:dynamodb:${self:provider.region}:*:table/${self:provider.environment.TODOS_TABLE}/index/${self:provider.environment.TODOS_USER_INDEX}
# - Effect: Allow
# Action:
# - s3:PutObject
# - s3:GetObject
# Resource: arn:aws:s3:::${self:provider.environment.TODOS_IMAGES_S3_BUCKET}/*
functions:
Auth:
handler: src/lambda/auth/auth0Authorizer.handler
environment:
AUTH_URL: https://udagram-acioli.auth0.com/.well-known/jwks.json
CreateTodo:
handler: src/lambda/http/createTodo.handler
events:
- http:
method: post
path: todos
cors: true
authorizer: Auth
reqValidatorName: RequestBodyValidator
documentation:
summary: Create Todo
description: Create a new todo item
requestModels:
'application/json': TodoRequest
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:PutItem
Resource: arn:aws:dynamodb:${self:provider.region}:*:table/${self:provider.environment.TODOS_TABLE}
DeleteTodo:
handler: src/lambda/http/deleteTodo.handler
events:
- http:
method: delete
path: todos/{todoId}
cors: true
authorizer: Auth
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:DeleteItem
Resource: arn:aws:dynamodb:${self:provider.region}:*:table/${self:provider.environment.TODOS_TABLE}
UpdateTodo:
handler: src/lambda/http/updateTodo.handler
events:
- http:
method: patch
path: todos/{todoId}
cors: true
authorizer: Auth
reqValidatorName: RequestBodyValidator
documentation:
summary: Update todo
description: Update todo item
requestModels:
'application/json': TodoRequest
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:UpdateItem
Resource: arn:aws:dynamodb:${self:provider.region}:*:table/${self:provider.environment.TODOS_TABLE}
GenerateUploadUrl:
handler: src/lambda/http/generateUploadUrl.handler
events:
- http:
method: post
path: todos/{todoId}/attachment
cors: true
authorizer: Auth
iamRoleStatements:
- Effect: Allow
Action:
- s3:PutObject
- s3:GetObject
Resource: arn:aws:s3:::${self:provider.environment.TODOS_IMAGES_S3_BUCKET}/*
GetTodos:
handler: src/lambda/http/getTodos.handler
events:
- http:
method: get
path: todos
cors: true
authorizer: Auth
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:Query
Resource: arn:aws:dynamodb:${self:provider.region}:*:table/${self:provider.environment.TODOS_TABLE}/index/${self:provider.environment.TODOS_USER_INDEX}
- Effect: Allow
Action:
- s3:HeadObject
Resource: arn:aws:s3:::${self:provider.environment.TODOS_IMAGES_S3_BUCKET}
resources:
Resources:
RequestBodyValidator:
Type: AWS::ApiGateway::RequestValidator
Properties:
Name: 'request-body-validator'
RestApiId:
Ref: ApiGatewayRestApi
ValidateRequestBody: true
ValidateRequestParameters: false
AttachmentBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: ${self:provider.environment.TODOS_IMAGES_S3_BUCKET}
CorsConfiguration:
CorsRules:
-
AllowedOrigins:
- '*'
AllowedHeaders:
- '*'
AllowedMethods:
- GET
- POST
- PUT
- DELETE
- HEAD
MaxAge: 3000
BucketPolicy:
Type: AWS::S3::BucketPolicy
Properties:
PolicyDocument:
Id: MyPolicy
Version: "2012-10-17"
Statement:
- Sid: PublicReadForGetBucketObjects
Effect: Allow
Principal: '*'
Action: 's3:GetObject'
Resource: 'arn:aws:s3:::${self:provider.environment.TODOS_IMAGES_S3_BUCKET}/*'
Bucket: !Ref AttachmentBucket
TodosDynamoDBTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: todoId
AttributeType: S
- AttributeName: userId
AttributeType: S
KeySchema:
- AttributeName: todoId
KeyType: HASH
GlobalSecondaryIndexes:
- IndexName: ${self:provider.environment.TODOS_USER_INDEX}
KeySchema:
- AttributeName: userId
KeyType: HASH
Projection:
ProjectionType: ALL
BillingMode: PAY_PER_REQUEST
TableName: ${self:provider.environment.TODOS_TABLE}