-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
87 lines (81 loc) · 1.95 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
77
78
79
80
81
82
83
84
85
86
87
service: sqs-service
frameworkVersion: '3'
plugins:
- serverless-offline
package:
exclude:
- node_modules/**
provider:
name: aws
region: ap-south-1
runtime: nodejs14.x
endpointType: REGIONAL
environment:
QUEUE_URL: !Sub https://sqs.${self:provider.region}.amazonaws.com/${AWS::AccountId}/MyQueue.fifo
apiGateway:
binaryMediaTypes:
- '*/*'
iam:
role:
statements:
- Effect: 'Allow'
Action:
- 'lambda:InvokeFunction'
Resource: !Sub 'arn:aws:lambda:${self:provider.region}:${AWS::AccountId}:function:sqs-service-dev-consumer'
- Effect: 'Allow'
Action:
- 'sqs:SendMessage'
- 'sqs:ReceiveMessage'
- 'sqs:DeleteMessage'
- 'sqs:GetQueueUrl'
Resource: !Sub 'arn:aws:sqs:${self:provider.region}:${AWS::AccountId}:MyQueue.fifo'
- Effect: 'Allow'
Action:
- 'sqs:ListQueues'
Resource: !Sub 'arn:aws:sqs:${self:provider.region}:${AWS::AccountId}:*'
functions:
producer:
handler: producer.main
events:
- httpApi:
method: post
path: /produce
timeout: 25
layers:
- !Ref AwsSDKLambdaLayer
consumer:
handler: consumer.main
destinations:
onSuccess: producer
events:
- httpApi:
method: post
path: /consume
timeout: 25
layers:
- !Ref AwsSDKLambdaLayer
resources:
Resources:
MyQueue:
Type: 'AWS::SQS::Queue'
Properties:
QueueName: "MyQueue.fifo"
FifoQueue: true
RedrivePolicy:
deadLetterTargetArn:
Fn::GetAtt:
- "MyQueueDLQ"
- "Arn"
maxReceiveCount: 5
MyQueueDLQ:
Type: AWS::SQS::Queue
Properties:
QueueName: "MyQueueDLQ.fifo"
FifoQueue: true
layers:
awsSDK:
path: ./layer
compatibleRuntimes:
- nodejs14.x
compatibleArchitectures:
- x86_64