-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserverless.yml
70 lines (67 loc) · 1.39 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
plugins:
- serverless-dotenv-plugin
- serverless-webpack
- serverless-domain-manager
service: ${file(./serverless.env.yml):service}
custom:
customDomain:
domainName: ${file(./serverless.env.yml):domainName}
basePath: ${file(./serverless.env.yml):basePath}
certificateName: ${file(./serverless.env.yml):certificateName}
createRoute53Record: true
endpointType: 'regional'
provider:
name: aws
runtime: nodejs8.10
region: eu-central-1
profile: ${file(./serverless.env.yml):profile}
memorySize: 512
timeout: 20
iamRoleStatements:
- Effect: Allow
Action:
- s3:*
Resource: "*"
functions:
hello:
handler: src/index.hello
events:
- http:
method: get
path: hello
cors: true
login:
handler: src/index.login
events:
- http:
method: get
path: login
cors: true
redirect:
handler: src/index.redirect
events:
- http:
method: get
path: redirect
cors: true
api:
handler: src/index.api
events:
- http:
method: get
path: api
cors: true
room:
handler: src/index.room
events:
- http:
method: get
path: room
cors: true
join:
handler: src/index.join
events:
- http:
method: get
path: join
cors: true