-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpastebin_lambda.yaml
184 lines (174 loc) · 5.62 KB
/
pastebin_lambda.yaml
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
AWSTemplateFormatVersion: '2010-09-09'
Parameters:
PasteS3StackName:
Type: String
Description: Name of S3 stack
PasteDDBStackName:
Type: String
Description: Name of DDB stack
CodeBucket:
Type: String
ScraperZipFileName:
Type: String
SaverZipFileName:
Type: String
Resources:
PastebinScraperLambdaFunction:
Type: AWS::Lambda::Function
Properties:
FunctionName: pastebin-scraper
Handler: lambda_function.lambda_handler
Runtime: python3.12
Role: !GetAtt PastebinScraperLambdaExecutionRole.Arn
Tags:
- Key: project
Value: pastebin-scraper
Code:
S3Bucket: !Ref CodeBucket
S3Key: !Join [ '', [ 'code/', !Ref ScraperZipFileName ] ]
Environment:
Variables:
DYNAMODB_TABLE:
Fn::ImportValue:
'Fn::Sub': '${PasteDDBStackName}-DDBTableName'
PastebinScraperTrigger:
Type: AWS::Events::Rule
Properties:
Name: 1_minute_pastebin_rule
ScheduleExpression: rate(1 minute)
State: ENABLED
Description: Triggers Lambda function for pastebin scraping every minute
EventBusName: default
Targets:
- Id: Ida9e97f01-4ead-44bf-ab8c-f872d6c1e252
Arn: !GetAtt PastebinScraperLambdaFunction.Arn
# Tags:
# - Key: project
# Value: pastebin-scraper
PastebinScraperLambdaPermission:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !Ref PastebinScraperLambdaFunction
Action: lambda:InvokeFunction
Principal: events.amazonaws.com
SourceArn: !GetAtt PastebinScraperTrigger.Arn
PastebinSaverLambdaFunction:
Type: AWS::Lambda::Function
Properties:
FunctionName: pastebin-saver
Handler: lambda_function.lambda_handler
Runtime: python3.12
Role: !GetAtt PastebinSaverLambdaExecutionRole.Arn
Tags:
- Key: project
Value: pastebin-scraper
Code:
S3Bucket: !Ref CodeBucket
S3Key: !Join [ '', [ 'code/', !Ref ScraperZipFileName ] ]
Environment:
Variables:
S3_BUCKET:
Fn::ImportValue:
'Fn::Sub': '${PasteS3StackName}-BucketName'
DYNAMODB_TABLE:
Fn::ImportValue:
'Fn::Sub': '${PasteDDBStackName}-DDBTableName'
PastebinScraperLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
Tags:
- Key: project
Value: pastebin-scraper
Policies:
- PolicyName: PastebinScraperDynamoDBPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:BatchWriteItem
- dynamodb:Query
Resource:
Fn::ImportValue:
'Fn::Sub': '${PasteDDBStackName}-DDBTableARN'
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: arn:aws:logs:*:*:*
PastebinSaverLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
Tags:
- Key: project
Value: pastebin-scraper
Policies:
- PolicyName: PastebinSaverS3Policy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- s3:PutObject
Resource: !Sub
- 'arn:aws:s3:::${BucketName}/*'
- BucketName:
Fn::ImportValue:
'Fn::Sub': '${PasteS3StackName}-BucketName'
- Effect: Allow
Action:
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:BatchWriteItem
- dynamodb:Query
Resource:
Fn::ImportValue:
'Fn::Sub': '${PasteDDBStackName}-DDBTableARN'
- Effect: Allow
Action:
- dynamodb:DescribeStream
- dynamodb:GetRecords
- dynamodb:GetShardIterator
- dynamodb:ListStreams
Resource:
Fn::ImportValue:
'Fn::Sub': '${PasteDDBStackName}-DDBTableStreamARN'
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: arn:aws:logs:*:*:*
DynamoDBStreamToPastebinSaverLambda:
Type: AWS::Lambda::EventSourceMapping
Properties:
BatchSize: 5
StartingPosition: LATEST
EventSourceArn:
Fn::ImportValue:
'Fn::Sub': '${PasteDDBStackName}-DDBTableStreamARN'
FunctionName: !GetAtt PastebinSaverLambdaFunction.Arn
Outputs:
PastebinScraperLambdaArn:
Value: !GetAtt PastebinScraperLambdaFunction.Arn
Description: The ARN of the pastebin-scraper Lambda function
PastebinSaverLambdaArn:
Value: !GetAtt PastebinSaverLambdaFunction.Arn
Description: The ARN of the pastebin-saver Lambda function