-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlambda_function.py
55 lines (48 loc) · 1.59 KB
/
lambda_function.py
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
import json
import logging
import boto3
import time
import os
#import sentry_sdk
#from sentry_sdk.integrations.aws_lambda import AwsLambdaIntegration
#SENTRY_DSN = os.environ['SENTRY_DSN']
#sentry_sdk.init(
# dsn=SENTRY_DSN,
# integrations=[AwsLambdaIntegration(timeout_warning=True)]
# # To set a uniform sample rate
# traces_sample_rate=1.0,
#)
#123The distribution ID of the AWS CloudFront distribution is set as an environment variable of the function
DistributionId = os.environ['DISTRIBUTION_ID']
def lambda_handler(event, context):
logger = logging.getLogger()
logger.setLevel(logging.INFO)
logger.debug(json.dumps(event))
allFiles = ['/*']
client = boto3.client('cloudfront')
invalidation = client.create_invalidation(
DistributionId = DistributionId,
InvalidationBatch={
'Paths': {
'Quantity': 1,
'Items': allFiles
},
'CallerReference': str(time.time())
})
codepipeline = boto3.client('codepipeline')
job_id = event['CodePipeline.job']['id']
try:
pipeline = boto3.client('codepipeline')
jobId=event['CodePipeline.job']['id']
response = pipeline.put_job_success_result(jobId=job_id)
logger.debug(response)
except Exception as error:
logger.exception(error)
response = codepipeline.put_job_failure_result(
jobId=job_id,
failureDetails={
'type': 'JobFailed',
'message': f'{error.__class__.__name__}: {str(error)}'
}
)
logger.debug(response)