-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
173 lines (159 loc) · 4.5 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
service: notes-api
# Create an optimized package for our functions
package:
individually: true
plugins:
- serverless-bundle # Package our functions with Webpack
- serverless-offline
- serverless-dotenv-plugin # Load .env as environment variables
- serverless-dynamo-stream-plugin # connect dynamodb stream to EXISTING table
provider:
name: aws
runtime: nodejs12.x
stage: prod
region: eu-west-1
# These environment variables are made available to our functions
# under process.env.
environment:
tableName: notes
# 'iamRoleStatements' defines the permission policy for the Lambda function.
# In this case Lambda functions are granted with permissions to access DynamoDB.
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:Scan
- dynamodb:Query
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
- dynamodb:DescribeTable
- dynamodb:DescribeStream
- dynamodb:GetRecords
- dynamodb:GetShardIterator
- dynamodb:ListStreams
Resource: "arn:aws:dynamodb:eu-central-1:*:*"
functions:
# Defines an HTTP API endpoint that calls the main function in create.js
# - path: url path is /notes
# - method: POST request
create:
handler: create.main
events:
- http:
path: notes
method: post
get:
# Defines an HTTP API endpoint that calls the main function in get.js
# - path: url path is /notes/{id}
# - method: GET request
handler: get.main
events:
- http:
path: notes/{id}
method: get
list:
# Defines an HTTP API endpoint that calls the main function in list.js
# - path: url path is /notes
# - method: GET request
handler: list.main
events:
- http:
path: notes
method: get
list1:
# Defines an HTTP API endpoint that calls the main function in list.js
# - path: url path is /notes
# - method: GET request
handler: list1.main
events:
- http:
path: notes
method: get
update:
# Defines an HTTP API endpoint that calls the main function in update.js
# - path: url path is /notes/{id}
# - method: PUT request
handler: update.main
events:
- http:
path: notes/{id}
method: put
delete:
# Defines an HTTP API endpoint that calls the main function in delete.js
# - path: url path is /notes/{id}
# - method: DELETE request
handler: delete.main
events:
- http:
path: notes/{id}
method: delete
add_field:
# Defines an HTTP API endpoint that calls the main function in list.js
# - path: url path is /notes
# - method: GET request
handler: add_field.main
events:
- http:
path: notes
method: get
notes_event_dispatcher:
handler: notes_event_dispatcher.main
environment:
PARAM1: param1
PARAM2: param2
PARAM3: >
[
{
"id": "notifications",
"type": "add",
"path": "$.Records[*].dynamodb",
"handler": "add_notification_event"
},
{
"type": "update",
"path": "$.Records[*].dynamodb",
"handler": "update_notification_event"
}
]
PARAM4: param4
# PARAM3:
# type: add
# path: $.Records[*].dynamodb
# handler: add_notification_event
# event_handlers:
# - add_comment_handler:
# type: added
# path: somepath
# handler: somehandler
events:
- existingDynamoStream:
tableName: notes
streamType: NEW_AND_OLD_IMAGES
startingPosition: LATEST
add_notification_event:
handler: add_notification_event.main
# notes_event_handler:
# handler: notes_event_handler.main
# events:
# - existingDynamoStream:
# tableName: notes
# streamType: NEW_AND_OLD_IMAGES
# startingPosition: LATEST
# resources:
# Resources:
# NotesTable:
# Type: AWS::DynamoDB::Table
# Properties:
# TableName: notes1
# AttributeDefinitions:
# - AttributeName: userId
# AttributeType: S
# KeySchema:
# - AttributeName: userId
# KeyType: HASH
# ProvisionedThroughput:
# ReadCapacityUnits: 5
# WriteCapacityUnits: 5
# StreamSpecification:
# StreamViewType: NEW_AND_OLD_IMAGES