-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserverless.ts
More file actions
84 lines (81 loc) · 2.4 KB
/
serverless.ts
File metadata and controls
84 lines (81 loc) · 2.4 KB
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
import {AWS} from "@serverless/typescript";
const serverlessConfiguration: AWS = {
service: "eventbridge-sqs-lambda",
frameworkVersion: "3",
provider: {
name: "aws",
runtime: "nodejs16.x",
region: "eu-central-1"
},
plugins: [
'serverless-plugin-typescript',
],
functions: {
eventbridgeSqsLambda: {
handler: `./handler.main`,
events: [
{
sqs: {
arn: {
'Fn::GetAtt': ['Queue', 'Arn']
}
}
}
]
}
},
resources: {
Resources: {
Queue: {
Type: 'AWS::SQS::Queue'
},
EventRule: {
Type: 'AWS::Events::Rule',
Properties: {
Description: 'EventRule',
Name: 'EventbridgeToQueue',
EventPattern: {
source: [
{
prefix: 'example-prefix'
}
]
},
Targets: [
{
Arn: {
'Fn::GetAtt': ['Queue', 'Arn']
},
Id: 'SQSqueue'
}
]
}
},
EventBridgeToToSqsPolicy: {
Type: 'AWS::SQS::QueuePolicy',
Properties: {
PolicyDocument: {
Statement: [
{
Effect: 'Allow',
Principal: {
Service: 'events.amazonaws.com'
},
Action: 'SQS:SendMessage',
Resource: {
'Fn::GetAtt': ['Queue', 'Arn']
}
}
]
},
Queues: [
{
Ref: 'Queue'
}
]
}
}
}
}
}
module.exports = serverlessConfiguration;