This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 801
/
ses-reports.yaml
429 lines (395 loc) · 12.7 KB
/
ses-reports.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
---
AWSTemplateFormatVersion: "2010-09-09"
Description: >
Create the SES-Report Solution.
Parameters:
BucketName:
Type: "String"
Description: "Bucket that will be created to save the reports (It will create a new bucket for you, please choose a non-existent bucket name)"
BucketPrefix:
Type: "String"
Description: "[OPTIONAL] The S3 Bucket Key Prefix, Example: Prefix/"
SourceEmail:
Type: "String"
Description: "Email address that will be used as FROM address (Must be SES Verified) -> yourRecipient@yourDomain.com.
The solution will send you a daily email with the Report link using the From address specified in this parameter."
DestinationEmail:
Type: "String"
Description: The recipient that will receive the reports URL , example -> "yourDestination@Domain.com"
Identity:
Type: "String"
Description: "The SES identity for which the Amazon SNS topic will be set (Email or Domain).
You can specify an identity by using its name or by using its Amazon Resource Name (ARN).
Examples: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.
You can also give as an input multiple identities comma delimited (,)"
Frequency:
Type: String
Default: "cron(00 23 * * ? *)"
AllowedValues:
- "cron(00 23 * * ? *)"
Description: "cron(00 23 * * ? *) = Once a day at 23h00"
Resources:
#ExecutionRole
CreateNestedExecutePermission:
Type: "AWS::Lambda::Permission"
DependsOn: "LambdaFunction"
Properties:
Action: "lambda:InvokeFunction"
Principal: events.amazonaws.com
FunctionName:
Fn::GetAtt:
- "LambdaFunction"
- "Arn"
#LambdaRole
LambdaExecutionRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
Path: /
Policies:
-
PolicyName: SQSPermissions
PolicyDocument:
Version: "2012-10-17"
Statement:
-
Action:
- "sqs:ChangeMessageVisibility"
- "sqs:ChangeMessageVisibilityBatch"
- "sqs:DeleteMessage"
- "sqs:DeleteMessageBatch"
- "sqs:GetQueueAttributes"
- "sqs:GetQueueUrl"
- "sqs:ReceiveMessage"
Resource:
Fn::GetAtt:
- "MyQueue"
- "Arn"
Effect: Allow
-
PolicyName: S3Permissions
PolicyDocument:
Version: "2012-10-17"
Statement:
-
Action:
- "s3:PutObject"
- "s3:PutObjectAcl"
Resource:
Fn::Join: [ "", [ "arn:aws:s3:::", !Ref BucketName ,"/*" ] ]
Effect: "Allow"
-
PolicyName: SESPermissions
PolicyDocument:
Version: "2012-10-17"
Statement:
-
Action:
- "ses:SendEmail"
Resource: "*"
Effect: "Allow"
-
PolicyName: CWLogsPermissions
PolicyDocument:
Version: "2012-10-17"
Statement:
-
Action:
- "logs:CreateLogGroup"
- "logs:CreateLogStream"
- "logs:PutLogEvents"
- "logs:DescribeLogStreams"
Resource: "arn:aws:logs:*:*:*"
Effect: "Allow"
#Lambda Function
LambdaFunction:
Type: "AWS::Lambda::Function"
DependsOn: RunLambdaCodeSource
Properties:
Handler: "index.handler"
MemorySize: 1024
Role:
Fn::GetAtt:
- "LambdaExecutionRole"
- "Arn"
Code:
S3Bucket: !Ref MyS3Bucket
S3Key: "sesreport.zip"
Runtime: "nodejs12.x"
Timeout: "600"
Environment:
Variables:
Key: Value
Region: !Ref "AWS::Region"
QueueURL: !Ref "MyQueue"
ToAddr: !Ref "DestinationEmail"
SrcAddr: !Ref "SourceEmail"
BucketName: !Ref "BucketName"
BucketPrefix: !Ref "BucketPrefix"
#SQS Queue
MyQueue:
Type: "AWS::SQS::Queue"
DependsOn: "MySNSTopic"
Properties:
QueueName: "SESReportQueue"
VisibilityTimeout: "300"
#SQS Queue Policy
MyQueuePolicy:
DependsOn: MyQueue
Type: "AWS::SQS::QueuePolicy"
Properties:
Queues:
- !Ref MyQueue
PolicyDocument:
Id: MyQueuePolicy
Statement:
- Resource:
!GetAtt MyQueue.Arn
Effect: Allow
Sid: "Allow-SNS-Send-Message"
Principal: "*"
Action:
- "sqs:SendMessage"
Condition:
ArnEquals:
aws:SourceArn: !Ref MySNSTopic
# SNS TOPIC
MySNSTopic:
Type: "AWS::SNS::Topic"
Properties:
TopicName: "SESReportSNSTopic"
#MyTopicSubscription
MySubscription:
Type: AWS::SNS::Subscription
Properties:
Endpoint:
Fn::GetAtt:
- "MyQueue"
- "Arn"
Protocol: "sqs"
TopicArn: !Ref "MySNSTopic"
#My S3 Bucket
MyS3Bucket:
Type: AWS::S3::Bucket
DeletionPolicy: Retain
Properties:
BucketName: !Ref BucketName
#ExecutionRole for CustomResource
CustomResourceExecutePermission:
Type: 'AWS::Lambda::Permission'
DependsOn: 'CustomResourceLambdaFunction'
Properties:
Action: 'lambda:InvokeFunction'
Principal: cloudformation.amazonaws.com
FunctionName:
Fn::GetAtt:
- "CustomResourceLambdaFunction"
- "Arn"
#LambdaRole for CustomResource
CustomResourceLambdaExecutionRole:
Type: 'AWS::IAM::Role'
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
Policies:
- PolicyName: SetSESIdentityNotificationTopic
PolicyDocument:
Version: "2012-10-17"
Statement:
Action:
- 'ses:SetIdentityNotificationTopic'
- 'logs:*'
- 's3:PutObject*'
Resource: '*'
Effect: Allow
- PolicyName: AllowPurgeSQSQueue
PolicyDocument:
Version: "2012-10-17"
Statement:
Action:
- "sqs:PurgeQueue"
Effect: Allow
Resource: !GetAtt MyQueue.Arn
#Custom resourceLambda Function
CustomResourceLambdaFunction:
Type: "AWS::Lambda::Function"
Properties:
Handler: "index.handler"
Role:
Fn::GetAtt:
- "CustomResourceLambdaExecutionRole"
- "Arn"
Code:
ZipFile: >
var AWS = require('aws-sdk');
var response = require('cfn-response');
var ses = new AWS.SES();
var sqs = new AWS.SQS();
exports.handler = (event, context, callback) => {
var identity = event.ResourceProperties.Identity;
var snsTopic = event.ResourceProperties.MySNSTopic;
var NotificationType = event.ResourceProperties.NotificationType;
var MyQueue = event.ResourceProperties.MyQueue;
var identities = identity.replace(/\s/g, '').split(',');
var responseData = {};
function purgeQueue(MyQueue){
var params = {
QueueUrl: MyQueue
};
sqs.purgeQueue(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
};
//When CloudFormation's Stack is deleted
if (event.RequestType == 'Delete') {
response.send(event, context, response.SUCCESS);
return;
}
//When CloudFormation's Stack is Updated
if (event.RequestType == 'Update') {
response.send(event, context, response.SUCCESS);
return;
}
for (var i = 0, len = identities.length; i < len; i++) {
console.log("Enabling notificaiton for: " + identities[i]);
var params = {
Identity: identities[i],
NotificationType: NotificationType,
SnsTopic: snsTopic
};
ses.setIdentityNotificationTopic(params, function(err, data) {
if (err) {
console.log(err, err.stack); // an error occurred
responseData = {Error: 'setIdentifyNotificationTopic failed'};
response.send(event, context, response.FAILED, responseData);
} else {
purgeQueue(MyQueue);
response.send(event, context, response.SUCCESS, responseData);
console.log(data); // successful response
}
});
};
};
Runtime: "nodejs12.x"
Timeout: "25"
#Execute Lambda Custom Resource
RunLambdaBounce:
Type: "Custom::RunLambdaFunction"
DependsOn:
- "CustomResourceLambdaFunction"
- "MySNSTopic"
Properties:
ServiceToken:
Fn::GetAtt:
- "CustomResourceLambdaFunction"
- "Arn"
MySNSTopic: !Ref "MySNSTopic"
Identity: !Ref "Identity"
NotificationType: "Bounce"
MyQueue: !Ref MyQueue
#Execute Lambda Custom Resource
RunLambdaComplaint:
Type: "Custom::RunLambdaFunction"
DependsOn:
- "CustomResourceLambdaFunction"
- "MySNSTopic"
Properties:
ServiceToken:
Fn::GetAtt:
- "CustomResourceLambdaFunction"
- "Arn"
MySNSTopic: !Ref "MySNSTopic"
Identity: !Ref "Identity"
NotificationType: "Complaint"
MyQueue: !Ref MyQueue
#CronJob as EventRule to invoke SESReport Lambda Function
CronjobEvent:
Type: "AWS::Events::Rule"
Properties:
Description: CloudWatch Event that triggers SESReport Lambda Function
ScheduleExpression: !Ref Frequency
State: ENABLED
Targets:
-
Arn: !GetAtt LambdaFunction.Arn
Id: SESReportCronjob
#Permission to CWEvents invoke the SESReport Lambda Function
PermissionForEventsToInvokeLambda:
Type: "AWS::Lambda::Permission"
Properties:
FunctionName: !Ref LambdaFunction
Action: lambda:InvokeFunction
Principal: events.amazonaws.com
SourceArn: !GetAtt CronjobEvent.Arn
#Execute Lambda Custom Resource
RunLambdaCodeSource:
Type: "Custom::RunLambdaFunctionCode"
DependsOn:
- CustomResourceLambdaExecutionRole
Properties:
ServiceToken:
Fn::GetAtt:
- "CustomResourceLambdaFunctionDownloadCode"
- "Arn"
Bucket: !Ref MyS3Bucket
#Custom resourceLambda Function
CustomResourceLambdaFunctionDownloadCode:
Type: "AWS::Lambda::Function"
DependsOn:
- CustomResourceLambdaExecutionRole
- MyS3Bucket
Properties:
Handler: "index.lambda_handler"
Role:
Fn::GetAtt:
- "CustomResourceLambdaExecutionRole"
- "Arn"
Code:
ZipFile: >
import cfnresponse
import boto3
import urllib
import os
Bucket = os.environ['Bucket']
def lambda_handler(event, context):
try:
url = "https://raw.githubusercontent.com/awslabs/aws-support-tools/master/SES/SESReports/sesreport.zip"
download = urllib.URLopener()
download.retrieve(url, '/tmp/sesreport.zip')
rdata = {}
client = boto3.client('s3')
response = client.put_object(
Bucket=Bucket,
ACL='public-read',
Key='sesreport.zip',
Body=open('/tmp/sesreport.zip', 'rb')
)
cfnresponse.send(event, context, cfnresponse.SUCCESS, rdata)
except Exception as e:
print 'Exception occured :' + str(e)
rdata = {"failed"}
cfnresponse.send(event, context, cfnresponse.FAILED, rdata)
raise e
return
Runtime: "python2.7"
Timeout: "60"
Environment:
Variables:
Bucket: !Ref "BucketName"