generated from cdash04/express-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
54 lines (50 loc) · 1.02 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
service: APP-NAME
provider:
name: aws
runtime: nodejs14.x
region: ca-central-1
stage: ${env:NODE_ENV}
tracing:
apiGateway: true
lambda: true
environment:
NODE_ENV: ${env:NODE_ENV}
iamRoleStatements:
- Effect: 'Allow'
Action:
- secretsmanager:GetSecretValue
- s3:PutObject
- s3:GetObject
- dynamodb:DescribeTable
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
Resource:
- '*'
package:
exclude:
- node_modules/**
- src/**
- test/**
custom:
serverless-layers:
- packageManager: yarn
- dependenciesPath: ./package.json
functions:
exemple:
handler: dist/functions/exemple.handler
events:
- http:
path: /status
method: ANY
cors: true
- http:
path: /status/{proxy+}
method: ANY
cors: true
plugins:
- serverless-offline
- serverless-layers