-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
76 lines (70 loc) · 1.79 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
71
72
73
74
75
76
service: lambda-php-skeleton
provider:
name: aws
stage: ${opt:stage, 'dev'}
region: ${env:AWS_DEFAULT_REGION}
runtime: provided.al2
memorySize: 128 # Overwrite the default memory size. Default is 1024
usagePlan: # Optional usage plan configuration
quota:
limit: 1000
period: MONTH
throttle:
burstLimit: 20
rateLimit: 10
environment:
foo: 1
plugins:
- ./vendor/bref/bref
functions:
cronjob:
handler: lambda/cronjob.php
description: 'Example scheduled task running with AWS lambda'
memorySize: 128
timeout: 5
layers:
- ${bref:layer.php-80}
events:
- schedule:
rate: cron(0 16 * * ? *)
enabled: true
function:
handler: lambda/function.php
description: 'Example lambda function'
memorySize: 128
timeout: 5
layers:
- ${bref:layer.php-80}
events:
- sns:
arn: !Ref snsTriggerFunction
topicName: triggerFunction-${opt:stage}
http:
handler: lambda/http.php
description: 'Example HTTP'
memorySize: 128
timeout: 5
layers:
- ${bref:layer.php-80-fpm}
events:
- httpApi:
method: GET
path: /
cors: true
resources:
Resources:
snsTriggerFunction:
Type: AWS::SNS::Topic
Properties:
TopicName: triggerFunction-${opt:stage}
custom:
bref:
separateVendor: true
# Exclude files from deployment
package:
exclude:
- 'dev/**'
- 'docs/**'
- 'node_modules/**'
- 'test/**'
- 'tests/**'