add changed data to output for command line processing
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Emil Lerch 2021-01-05 23:26:33 -08:00
parent df1837e577
commit a8d567a384
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -138,7 +138,8 @@ def lambda_handler(event, context):
return {
'statusCode': 200,
'body': json.dumps(event)
'body': json.dumps(event),
'changed': changed,
}