def lambda_handler()

in src/inventory/handler.py [0:0]


def lambda_handler(event, context):
    inventory = AwsConfigInventoryReader(lambda_context=context).get_resources_from_all_accounts()

    report_path = CreateReportCommandHandler().execute(inventory)
    report_url = DeliverReportCommandHandler().execute(report_path)

    return {'statusCode': 200,
            'body': {
                    'report': { 'url': report_url }
                }
            }