-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathserverless.yml
94 lines (89 loc) · 2.12 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
service:
name: aws-serverless-api
# Add the serverless-webpack plugin
plugins:
- serverless-webpack
- serverless-dynamodb-local
- serverless-offline
custom:
webpack:
webpackConfig: ./webpack.config.js
includeModules: true
serverless-offline:
httpPort: 3003
dynamodb:
start:
port: 5000
inMemory: true
migrate: true
stages:
- dev
provider:
name: aws
runtime: nodejs12.x
stage: ${opt:stage, 'dev'}
region: ${opt:region, 'us-east-2'}
environment:
AWS_NODEJS_CONNECTION_REUSE_ENABLED: 1
POSTS_TABLE: Posts-${self:provider.stage}
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:DescribeTable
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:DeleteItem
Resource: "arn:aws:dynamodb:${self:provider.region}:*:table/${self:provider.environment.POSTS_TABLE}"
functions:
createPost:
handler: src/functions/createPost.handler
events:
- http:
method: post
path: create-post
cors: true
getAllPost:
handler: src/functions/getAllPost.handler
events:
- http:
method: get
path: get-post
cors: true
getPost:
handler: src/functions/getPost.handler
events:
- http:
method: get
path: get-post/{postId}
cors: true
updatePost:
handler: src/functions/updatePost.handler
events:
- http:
method: put
path: update-post/{postId}
cors: true
deletePost:
handler: src/functions/deletePost.handler
events:
- http:
method: delete
path: delete-post/{postId}
cors: true
resources:
Resources:
PostsListTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: ${self:provider.environment.POSTS_TABLE}
AttributeDefinitions:
- AttributeName: postId
AttributeType: S
KeySchema:
- AttributeName: postId
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1