-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathserverless.yml
97 lines (90 loc) · 2.27 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
# For full config options, check the docs:
# docs.serverless.com
service: realtime-transport-dashboard
# Serverless framework version
frameworkVersion: "3"
custom:
stage: ${opt:stage, self:provider.stage}
tableName: rtt-dashboard-${self:custom.stage}
provider:
name: aws
runtime: nodejs18.x
stage: prod
region: eu-west-1
httpApi:
cors: true
environment:
TABLE_NAME: ${self:custom.tableName}
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:DescribeTable
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
Resource:
- "Fn::GetAtt": [ RTTDashboardTable, Arn ]
functions:
createDashboard:
handler: src/handler.createDashboard
events:
- httpApi:
path: /dashboard
method: POST
updateDashboard:
handler: src/handler.updateDashboard
events:
- httpApi:
path: /dashboard/{dashboard_id}
method: POST
deleteDashboard:
handler: src/handler.deleteDashboard
events:
- httpApi:
path: /dashboard/{dashboard_id}
method: DELETE
getDashboard:
handler: src/handler.getDashboard
timeout: 20
memorySize: 2048
events:
- httpApi:
path: /dashboard/{dashboard_id}
method: GET
addWidget:
handler: src/handler.addWidget
events:
- httpApi:
path: /dashboard/{dashboard_id}/widget
method: POST
updateWidget:
handler: src/handler.updateWidget
events:
- httpApi:
path: /dashboard/{dashboard_id}/widget/{widget_id}
method: POST
deleteWidget:
handler: src/handler.deleteWidget
events:
- httpApi:
path: /dashboard/{dashboard_id}/widget/{widget_id}
method: DELETE
# you can add CloudFormation resource templates here
resources:
Resources:
RTTDashboardTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: ${self:custom.tableName}
AttributeDefinitions:
- AttributeName: id
AttributeType: S
KeySchema:
- AttributeName: id
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1