-
Notifications
You must be signed in to change notification settings - Fork 4
/
serverless.yml
63 lines (58 loc) · 1.34 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
service: nodejs-api
custom:
table: examples-table-projection
region: eu-west-2
provider:
name: aws
runtime: nodejs12.x
memorySize: 128
stage: ${opt:stage}
region: "${self:custom.region}"
logRetentionInDays: 1
versionFunctions: false
iam:
role:
statements:
- Effect: Allow
Action:
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
- dynamodb:GetItem
- dynamodb:DescribeTable
Resource:
- Fn::GetAtt:
- ExamplesProjectionTable
- Arn
environment:
STAGE: ${opt:stage}
REGION: "${self:custom.region}"
PROJECTION_TABLE: "${self:custom.table}"
NODE_OPTIONS: --require tracing
functions:
create:
handler: post.handler
events:
- http:
path: /
method: post
read:
handler: get.handler
events:
- http:
path: /{id}
method: get
resources:
Resources:
ExamplesProjectionTable:
Type: AWS::DynamoDB::Table
DeletionPolicy: Delete
Properties:
TableName: "${self:custom.table}"
BillingMode: PAY_PER_REQUEST
AttributeDefinitions:
- AttributeName: partitionKey
AttributeType: S
KeySchema:
- AttributeName: partitionKey
KeyType: HASH