-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
executable file
·197 lines (164 loc) · 4.31 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
service:
name: serverless-books-app
plugins:
- serverless-webpack
- serverless-iam-roles-per-function
- serverless-plugin-tracing
provider:
name: aws
runtime: nodejs12.x
stage: ${opt:stage, 'prod'}
region: ${opt:region, 'eu-central-1'}
environment:
BOOKS_TABLE: books-${self:provider.stage}
COVER_S3_BUCKET: sls-baer-books-cover-${self:provider.stage}
urlExpiration: 3600
INDEX_NAME: TOPIC_INDEX
tracing:
lambda: true
apiGateway: true
custom:
dynamodb:
stages:
- ${self:provider.stage}
start:
inMemory: true
migrate: true
functions:
Auth:
handler: src/lambda/auth/auth0Authorizer.handler
GetBooks:
handler: src/lambda/http/getBooks.handler
events:
- http:
method: get
path: books
cors: true
authorizer: Auth
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:Query
Resource: "*"
CreateBook:
handler: src/lambda/http/createBook.handler
events:
- http:
method: post
path: books
cors: true
authorizer: Auth
request:
schema:
application/json: ${file(src/models/create-book-request.json)}
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:PutItem
Resource: "*"
UpdateBook:
handler: src/lambda/http/updateBook.handler
events:
- http:
method: patch
path: books/{bookId}
cors: true
authorizer: Auth
request:
schema:
application/json: ${file(src/models/update-book-request.json)}
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:UpdateItem
Resource: "*"
DeleteBook :
handler: src/lambda/http/deleteBook.handler
events:
- http:
method: delete
path: books/{bookId}
cors: true
authorizer: Auth
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:DeleteItem
Resource: "*"
UploadUrl:
handler: src/lambda/http/generateUploadUrl.handler
events:
- http:
method: post
path: books/{bookId}/cover
cors: true
authorizer: Auth
iamRoleStatements:
- Effect: Allow
Action:
- s3:PutObject
- s3:GetObject
Resource: arn:aws:s3:::${self:provider.environment.COVER_S3_BUCKET}/*
- Effect: Allow
Action:
- dynamodb:UpdateItem
Resource: "*"
resources:
Resources:
BooksDynamoDBTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: userId
AttributeType: S
- AttributeName: bookId
AttributeType: S
- AttributeName: topic
AttributeType: S
KeySchema:
- AttributeName: userId
KeyType: HASH
- AttributeName: bookId
KeyType: RANGE
BillingMode: PAY_PER_REQUEST
TableName: ${self:provider.environment.BOOKS_TABLE}
LocalSecondaryIndexes:
- IndexName: ${self:provider.environment.INDEX_NAME}
KeySchema:
- AttributeName: userId
KeyType: HASH
- AttributeName: topic
KeyType: RANGE
Projection:
ProjectionType: ALL
CoverBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: ${self:provider.environment.COVER_S3_BUCKET}
CorsConfiguration:
CorsRules:
-
AllowedOrigins:
- '*'
AllowedHeaders:
- '*'
AllowedMethods:
- GET
- PUT
- POST
- 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.COVER_S3_BUCKET}/*'
Bucket: !Ref CoverBucket