-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathserverless.yml
55 lines (48 loc) · 1.09 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
service:
name: serverless-nestjs-crud
plugins:
- '@hewmen/serverless-plugin-typescript'
- serverless-offline
provider:
name: aws
runtime: nodejs8.10
stage: ${opt:stage,'local'}
# Environment Variables
environment:
MYSQL_HOST: ${self:custom.mysqlHost.${self:provider.stage}}
MYSQL_USER: ${self:custom.mysqlUser.${self:provider.stage}}
MYSQL_PASSWORD: ${self:custom.mysqlPassword.${self:provider.stage}}
MYSQL_DATABASE: ${self:custom.mysqlDatabase.${self:provider.stage}}
MYSQL_PORT: ${self:custom.mysqlPort.${self:provider.stage}}
# Custom Variables
custom:
stages:
- local
- dev
mysqlHost:
local: localhost
mysqlUser:
local: user
mysqlPassword:
local: password
mysqlDatabase:
local: dbname
mysqlPort:
local: '3306'
package:
individually: true
functions:
author:
handler: src/lambda.handler
events:
- http:
method: any
path: /api/author
cors: true
book:
handler: src/lambda.handler
events:
- http:
method: any
path: /api/book
cors: true