-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserverless.yml
More file actions
39 lines (34 loc) · 748 Bytes
/
serverless.yml
File metadata and controls
39 lines (34 loc) · 748 Bytes
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
service: node-express-serverless
frameworkVersion: '3'
useDotenv: true
plugins:
- serverless-dotenv-plugin
- serverless-layers
provider:
name: aws
runtime: nodejs14.x
region: us-east-1
deploymentBucket:
name: me.brance.deployment
package:
excludeDevDependencies: true
patterns:
- '!src/**'
- '!node_modules/**'
custom:
serverless-layers:
packageManager: yarn
dependenciesPath: ./package.json
functions:
api:
handler: dist/serverless.handler
events:
- httpApi: '*'
# fileSystemConfig:
# localMountPath: /mnt/efs
# arn: ${env:AWS_EFS_ACCESS_POINT}
# vpc:
# securityGroupIds:
# - ${env:AWS_SECURITY_GROUP}
# subnetIds:
# - ${env:AWS_SUBNET_ID}