-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
56 lines (51 loc) · 1.25 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
service: api
plugins:
- serverless-offline
# - serverless-aws-static-file-handler/plugins/BinaryMediaTypes
provider:
name: aws
runtime: nodejs14.x
# stage: ${env:STAGE}
stage: test #change this to change the stage of deployment
region: us-east-2
# custom:
# apiGateway:
# binaryMediaTypes:
# - "image/png"
# - "image/jpeg"
# - "image/jpg"
# - "application/pdf"
# - "multipart/form-data"
functions:
API:
handler: lambda.handler
events:
- http:
path: /
method: any
cors: true
# authorizer:
# arn: ${env:AWS_COGNITO_ARN}
- http:
path: /{proxy+}
method: any
cors: true
# authorizer:
# arn: ${env:AWS_COGNITO_ARN}
# - http:
# path: /route/and/path/{proxy+}
# method: any
# cors:
# origin: '*'
# headers:
# - Content-Type
# - X-Amz-Date
# - Authorization
# - X-Api-Key
# - X-Amz-Security-Token
# - X-Amz-User-Agent
# - x-flowlie-auth
# allowCredentials: false
resources:
# API Gateway Errors
- ${file(api-gateway-errors.yml)}