-
Notifications
You must be signed in to change notification settings - Fork 0
/
SMS_S3_drop.yaml
438 lines (390 loc) · 13.7 KB
/
SMS_S3_drop.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
430
431
432
433
434
435
436
437
438
AWSTemplateFormatVersion: 2010-09-09
Description: Sending SMS Messages with Amazon Pinpoint from a File Drop in Amazon S3
Parameters:
PinpointProjectId:
Type: String
Description: Amazon Pinpoint Project ID
AllowedPattern: ^[a-zA-Z0-9]*$
CreateS3BucketName:
Type: String
Description: Name of Amazon S3 Bucket to Create
S3BucketFileDropPrefix:
Type: String
Description: "Prefix (folder) in Amazon S3 where files will be dropped. Ex: files/"
Mappings:
LambdaRuntime:
Language:
Python: python3.7
Resources:
#### Amazon S3 Section
#######################################
# Create the Amazon S3 bucket with Lambda Trigger
S3FileDrop:
Type: AWS::S3::Bucket
DeletionPolicy: Retain
Metadata:
cfn_nag:
rules_to_suppress:
- id: W51
reason: Not public facing.
Properties:
BucketName: !Ref CreateS3BucketName
PublicAccessBlockConfiguration:
BlockPublicAcls: True
BlockPublicPolicy: True
IgnorePublicAcls: True
RestrictPublicBuckets: True
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: AES256
VersioningConfiguration:
Status: Enabled
LoggingConfiguration:
DestinationBucketName: !Ref LogBucket
LogFilePrefix: pinpoint-event-processing/
NotificationConfiguration:
LambdaConfigurations:
-
Event: "s3:ObjectCreated:*"
Filter:
S3Key:
Rules:
- Name: "prefix"
Value: !Ref S3BucketFileDropPrefix
Function: !GetAtt S3TriggeredSMSLambda.Arn
# Restrict Bucket Traffic to SSL Only
S3FileDropPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref S3FileDrop
PolicyDocument:
Version: 2012-10-17
Statement:
- Sid: AllowSSLRequestsOnly
Effect: Deny
Principal: "*"
Action: "s3:*"
Resource:
- !Sub "arn:aws:s3:::${CreateS3BucketName}/*"
- !Sub "arn:aws:s3:::${CreateS3BucketName}"
Condition:
Bool:
"aws:SecureTransport": "false"
# Provide Permissions for S3 to Invoke Lambda Function
S3InvokeLambdaPermission:
Type: AWS::Lambda::Permission
Properties:
Action: lambda:InvokeFunction
FunctionName: !Ref S3TriggeredSMSLambda
Principal: s3.amazonaws.com
SourceArn: !Sub arn:aws:s3:::${CreateS3BucketName}
SourceAccount: !Ref "AWS::AccountId"
# Best Practice - S3 Bucket to log access to File Drop S3 Bucket
LogBucket:
Type: AWS::S3::Bucket
DeletionPolicy: Retain
Metadata:
cfn_nag:
rules_to_suppress:
- id: W35
reason: This is the log bucket.
Properties:
AccessControl: LogDeliveryWrite
PublicAccessBlockConfiguration:
BlockPublicAcls: True
BlockPublicPolicy: True
IgnorePublicAcls: True
RestrictPublicBuckets: True
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: AES256
VersioningConfiguration:
Status: Enabled
# S3 Policy for the Log Bucket
LogBucketPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref LogBucket
PolicyDocument:
Version: 2012-10-17
Statement:
- Sid: AWSCloudTrailAclCheck
Effect: Allow
Principal:
Service: cloudtrail.amazonaws.com
Action: "s3:GetBucketAcl"
Resource: !Sub arn:aws:s3:::${LogBucket}
- Sid: AWSCloudTrailWrite
Effect: Allow
Principal:
Service: cloudtrail.amazonaws.com
Action: "s3:PutObject"
Resource: !Sub arn:aws:s3:::${LogBucket}/AWSLogs/${AWS::AccountId}/*
Condition:
StringEquals:
"s3:x-amz-acl": "bucket-owner-full-control"
- Sid: LogBucketAllowSSLRequestsOnly
Effect: Deny
Principal: "*"
Action: "s3:*"
Resource:
- !Sub "arn:aws:s3:::${LogBucket}/*"
- !Sub "arn:aws:s3:::${LogBucket}"
Condition:
Bool:
"aws:SecureTransport": "false"
#### AWS Lambda Section
#######################################
S3TriggeredSMSLambda:
Type: AWS::Lambda::Function
Properties:
Role: !GetAtt S3TriggeredSMSLambdaRole.Arn
Timeout: 600
MemorySize: 2048
Environment:
Variables:
LOG_LEVEL: "DEBUG"
SQS_QUEUE_URL: !Ref FIFOSQSQueue
Handler: index.lambda_handler
Runtime: !FindInMap ["LambdaRuntime", "Language", "Python"]
Code:
ZipFile: |
import json
import boto3
import logging
import traceback
import os
from io import StringIO
import csv
s3 = boto3.client('s3')
sqs = boto3.client('sqs')
queue_url = os.environ['SQS_QUEUE_URL']
def lambda_handler(event, context):
log_level = str(os.environ.get('LOG_LEVEL')).upper()
if log_level not in [
'DEBUG', 'INFO',
'WARNING', 'ERROR',
'CRITICAL'
]:
log_level = 'DEBUG'
logging.getLogger().setLevel(log_level)
logging.debug(event)
try:
for record in event['Records']:
obj = s3.get_object(
Bucket=record['s3']['bucket']['name'],
Key=record['s3']['object']['key']
)
# Assume Header Row - disregard it
obj['Body']._raw_stream.readline()
# For each line of the CSV, put message into a Queue
for line in obj['Body']._raw_stream:
line = line.decode('utf-8')
logging.debug('Reading Line: ' + line)
# TODO - ensure these match with the columns - this needs productionalizing
sms_number, message, external_campaign_id, short_code, message_type, id_1, id_2 = list(next(csv.reader(StringIO(line))))
msg = {
'sms_number': sms_number,
'message': message,
'external_campaign_id': external_campaign_id,
'short_code': short_code,
'message_type': message_type,
'id_1': id_1,
'id_2': id_2
}
# Send Message to SQS FIFO, using MessageGroupId allows to control concurrency
response = sqs.send_message(
QueueUrl=queue_url,
MessageBody=json.dumps(msg),
MessageDeduplicationId="%s-%s" % (sms_number, external_campaign_id),
MessageGroupId=short_code
)
logging.debug(response)
result = {
'statusCode': '200',
'body': {'message': 'success'}
}
return json.dumps(result)
except Exception as error:
logging.error('lambda_handler error: %s' % (error))
logging.error('lambda_handler trace: %s' % traceback.format_exc())
result = {
'statusCode': '500',
'body': {'message': 'error'}
}
return json.dumps(result)
S3TriggeredSMSLambdaRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
Path: /
Policies:
- PolicyName: root
PolicyDocument:
Version: '2012-10-17'
Statement:
-
Effect: "Allow"
Action:
- "logs:CreateLogGroup"
- "logs:CreateLogStream"
- "logs:PutLogEvents"
Resource: !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:*"
-
Effect: "Allow"
Action:
- "s3:GetObject"
- "s3:PutObject"
Resource:
- !Sub "arn:aws:s3:::${CreateS3BucketName}/*"
-
Effect: Allow
Action: sqs:SendMessage
Resource: !GetAtt FIFOSQSQueue.Arn
SQSTriggeredSMSLambda:
Type: AWS::Lambda::Function
Properties:
Role: !GetAtt SQSTriggeredSMSLambdaRole.Arn
Timeout: 60
MemorySize: 256
Environment:
Variables:
LOG_LEVEL: "DEBUG"
PINPOINT_PROJECT_ID: !Ref PinpointProjectId
Handler: index.lambda_handler
Runtime: !FindInMap ["LambdaRuntime", "Language", "Python"]
Code:
ZipFile: |
import json
import boto3
import logging
import traceback
import os
pinpoint = boto3.client('pinpoint')
def lambda_handler(event, context):
log_level = str(os.environ.get('LOG_LEVEL')).upper()
if log_level not in [
'DEBUG', 'INFO',
'WARNING', 'ERROR',
'CRITICAL'
]:
log_level = 'DEBUG'
logging.getLogger().setLevel(log_level)
logging.debug(event)
# Batch collection for our bulk send_messages call
addresses = {}
message_type = None
short_code = None
# loop over records and create our batch addresses
for record in event['Records']:
try:
payload=record["body"]
msg = json.loads(payload)
short_code = msg['short_code'] if short_code is None else short_code
message_type = msg['message_type'] if message_type is None else message_type
addresses[msg['sms_number']] = {
'BodyOverride': msg['message'],
'ChannelType': 'SMS',
'Context': {
'external_campaign_id': msg['external_campaign_id'],
'id_1': msg['id_1'],
'id_2': msg['id_2']
}
}
except Exception as error:
logging.error('lambda_handler error: %s' % (error))
logging.error('lambda_handler trace: %s' % traceback.format_exc())
result = {
'statusCode': '500',
'body': {'message': 'error'}
}
return json.dumps(result)
try:
# Send the bulk SMS request
response = pinpoint.send_messages(
ApplicationId=os.environ['PINPOINT_PROJECT_ID'],
MessageRequest={
'Addresses': addresses,
'MessageConfiguration': {
'SMSMessage': {
'MessageType': message_type,
'OriginationNumber': short_code,
}
}
}
)
# TODO -review the response object to see success failures of each message
logging.debug(response)
except Exception as error:
logging.error('lambda_handler error: %s' % (error))
logging.error('lambda_handler trace: %s' % traceback.format_exc())
result = {
'statusCode': '500',
'body': {'message': 'error'}
}
return json.dumps(result)
result = {
'statusCode': '200',
'body': {'message': 'success'}
}
return json.dumps(result)
SQSLambdaEventMapping:
Type: AWS::Lambda::EventSourceMapping
Properties:
BatchSize: 10
Enabled: True
EventSourceArn: !GetAtt FIFOSQSQueue.Arn
FunctionName: !Ref SQSTriggeredSMSLambda
SQSTriggeredSMSLambdaRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
Path: /
Policies:
- PolicyName: root
PolicyDocument:
Version: '2012-10-17'
Statement:
-
Effect: "Allow"
Action:
- "logs:CreateLogGroup"
- "logs:CreateLogStream"
- "logs:PutLogEvents"
Resource: !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:*"
-
Effect: Allow
Action: mobiletargeting:SendMessages
Resource: !Sub arn:aws:mobiletargeting:${AWS::Region}:${AWS::AccountId}:apps/${PinpointProjectId}/messages
-
Effect: Allow
Action:
- sqs:ReceiveMessage
- sqs:DeleteMessage
- sqs:GetQueueAttributes
Resource: !GetAtt FIFOSQSQueue.Arn
# FIFO Queue
FIFOSQSQueue:
Type: AWS::SQS::Queue
Properties:
VisibilityTimeout: 100
FifoQueue: true
KmsMasterKeyId: alias/aws/sqs