-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.yml
214 lines (207 loc) · 5.14 KB
/
functions.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
validateToken:
handler: src/index.handler
events:
- http:
path: /
method: POST
cors: ${self:custom.cors}
authorizer:
authorizerId:
Ref: CognitoAuthorizer
type: COGNITO_USER_POOLS
scopes:
- email
# CATEGORIES ROUTES...
getCategories:
handler: src/features/categories/get.handler
events:
- http:
path: /categories
method: GET
cors: ${self:custom.cors}
authorizer:
authorizerId:
Ref: CognitoAuthorizer
type: COGNITO_USER_POOLS
scopes:
- email
environment:
TABLE_NAME: !Ref categoriesTable
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:Scan
Resource: !GetAtt categoriesTable.Arn
createCategory:
handler: src/features/categories/create.handler
events:
- http:
path: /categories
method: post
cors: ${self:custom.cors}
authorizer:
authorizerId:
Ref: CognitoAuthorizer
type: COGNITO_USER_POOLS
scopes:
- email
environment:
TABLE_NAME: !Ref categoriesTable
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:PutItem
Resource: !GetAtt categoriesTable.Arn
updateCategory:
handler: src/features/categories/update.handler
events:
- http:
path: /categories
method: PUT
cors: ${self:custom.cors}
authorizer:
authorizerId:
Ref: CognitoAuthorizer
type: COGNITO_USER_POOLS
scopes:
- email
environment:
TABLE_NAME: !Ref categoriesTable
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:UpdateItem
Resource: !GetAtt categoriesTable.Arn
deleteCategory:
handler: src/features/categories/delete.handler
events:
- http:
path: /categories/{id}
method: DELETE
cors: ${self:custom.cors}
authorizer:
authorizerId:
Ref: CognitoAuthorizer
type: COGNITO_USER_POOLS
scopes:
- email
environment:
TABLE_NAME: !Ref categoriesTable
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:DeleteItem
Resource: !GetAtt categoriesTable.Arn
# Blog Routes...
createPresignedURLs:
handler: src/features/blogs/createPresigned.handler
events:
- http:
path: /blogs/signed_urls
method: POST
cors: ${self:custom.cors}
authorizer:
authorizerId:
Ref: CognitoAuthorizer
type: COGNITO_USER_POOLS
scopes:
- email
iamRoleStatementsName: pre-signed-function-role-${self:provider.stage}
iamRoleStatements:
- Effect: 'Allow'
Action:
- S3:PutObject
Resource: !Sub 'arn:aws:s3:::${blogImagesBucket}/*'
environment:
BUCKET_NAME: !Ref blogImagesBucket
createBlog:
handler: src/features/blogs/create.handler
events:
- http:
path: /blogs
method: POST
cors: ${self:custom.cors}
authorizer:
authorizerId:
Ref: CognitoAuthorizer
type: COGNITO_USER_POOLS
scopes:
- email
environment:
TABLE_NAME: !Ref blogTable
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:PutItem
Resource: !GetAtt blogTable.Arn
updateBlog:
handler: src/features/blogs/update.handler
events:
- http:
path: /blogs
method: PUT
cors: ${self:custom.cors}
authorizer:
authorizerId:
Ref: CognitoAuthorizer
type: COGNITO_USER_POOLS
scopes:
- email
environment:
TABLE_NAME: !Ref blogTable
BUCKET_NAME: !Ref blogImagesBucket
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:UpdateItem
- dynamodb:GetItem
Resource: !GetAtt blogTable.Arn
- Effect: Allow
Action:
- s3:DeleteObject
Resource: !Sub 'arn:aws:s3:::${blogImagesBucket}/*'
deleteBlog:
handler: src/features/blogs/delete.handler
events:
- http:
path: /blogs/{id}
method: DELETE
cors: ${self:custom.cors}
authorizer:
authorizerId:
Ref: CognitoAuthorizer
type: COGNITO_USER_POOLS
scopes:
- email
environment:
TABLE_NAME: !Ref blogTable
BUCKET_NAME: !Ref blogImagesBucket
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:DeleteItem
Resource: !GetAtt blogTable.Arn
- Effect: Allow
Action:
- s3:DeleteObject
Resource: !Sub 'arn:aws:s3:::${blogImagesBucket}/*'
getBlogs:
handler: src/features/blogs/get.handler
events:
- http:
path: /blogs #last blog fetched id... id , limit
method: GET
cors: ${self:custom.cors}
authorizer:
authorizerId:
Ref: CognitoAuthorizer
type: COGNITO_USER_POOLS
scopes:
- email
environment:
TABLE_NAME: !Ref blogTable
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:Query
Resource: !Sub 'arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/${blogTable}/*'