-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
92 lines (88 loc) · 2.07 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
service: series-api
frameworkVersion: "3"
provider:
name: aws
runtime: nodejs16.x
deploymentMethod: direct
region: eu-central-1
logRetentionInDays: 1
functions:
create:
handler: src/create.handler
events:
- http:
method: post
path: series
description: Creates a series
environment:
table: !Ref seriesTable
iamRoleStatements:
- Effect: "Allow"
Action:
- dynamodb:PutItem
Resource:
- Fn::GetAtt: [seriesTable, Arn]
list:
handler: src/list.handler
events:
- http:
method: get
path: series/{network}
description: Lists series for a network
environment:
table: !Ref seriesTable
iamRoleStatements:
- Effect: "Allow"
Action:
- dynamodb:Query
Resource:
- Fn::GetAtt: [seriesTable, Arn]
update:
handler: src/update.handler
events:
- http:
method: put
path: series/{network}/{title}
description: Updates a series
environment:
table: !Ref seriesTable
iamRoleStatements:
- Effect: "Allow"
Action:
- dynamodb:UpdateItem
Resource:
- Fn::GetAtt: [seriesTable, Arn]
delete:
handler: src/delete.handler
events:
- http:
method: delete
path: series/{network}/{title}
description: Deletes a series
environment:
table: !Ref seriesTable
iamRoleStatements:
- Effect: "Allow"
Action:
- dynamodb:DeleteItem
Resource:
- Fn::GetAtt: [seriesTable, Arn]
plugins:
- serverless-esbuild
- serverless-iam-roles-per-function
resources:
Resources:
seriesTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: network
AttributeType: S
- AttributeName: title
AttributeType: S
KeySchema:
- AttributeName: network
KeyType: HASH
- AttributeName: title
KeyType: RANGE
BillingMode: PAY_PER_REQUEST