This project is a Serverless application that parses CloudFront logs stored in an S3 bucket and ingests them into an OpenSearch cluster. The application is built using Python and deployed using the Serverless Framework. CI/CD is managed with GitHub Actions.
- Node.js and npm
- Serverless Framework
- AWS Account
- OpenSearch Cluster
Update the serverless.yml with below details
- desired s3 bucket name and prefix
- Add requried region
Add the following secrets to your GitHub repository settings:
MY_AWS_ACCESS_KEY
MY_AWS_SECRET_KEY
OPENSEARCH_HOST
OPENSEARCH_USERNAME
OPENSEARCH_PASSWORD
Deploy the Serverless application to AWS using deploy action
The Serverless configuration is set up to handle S3 events for the specified bucket. It uses the serverless-python-requirements plugin to manage Python dependencies.
Source Code src/cloudfront_parser.py: Contains the logic to parse CloudFront logs. src/lambda_handler.py: AWS Lambda handler to process S3 events, parse logs, and ingest into OpenSearch. src/version.py: Contains version information.
To run tests, use the following command:
pytest
git clone [email protected]:malikparvez/cloudfront-logs-parser-lambda-opensearch.git
cd cloudfront-logs-parser-lambda-opensearch
Install Python Dependencies: Ensure you have Python 3.11 installed. Install the necessary Python packages using pip:
pip3 install --target ./package -r requirements-lambda.txt
cd package
zip -r ../my_deployment_package.zip .
cd ..
cd src
zip -r ../my_deployment_package.zip cloudfront_parser.py lambda_handler.py version.py
Upload the generated zip file (my_deployment_package.zip) to AWS Lambda. Set the following environment variables in Lambda:
Set the following AWS and OpenSearch credentials as environment variables:
MY_AWS_ACCESS_KEY = ''
MY_AWS_SECRET_KEY = ''
OPENSEARCH_HOST = ''
OPENSEARCH_USERNAME = ''
OPENSEARCH_PASSWORD = ''
To automatically trigger the Lambda function when new CloudFront logs are added to your S3 bucket, follow these steps:
- Navigate to the AWS S3 console.
- Select the S3 bucket containing your CloudFront logs.
- Go to the "Properties" tab and click on "Events."
- Add a new event configuration with the following settings:
- Event Name: Choose a descriptive name (e.g., "CloudFrontLogsEvent").
- Events: Select "PUT" event
- Prefix: (Optional) Specify a prefix if your CloudFront logs are stored in a specific folder within the bucket.
- Suffix: (Optional) Specify a suffix if your CloudFront logs have a specific file extension.
- Click "Add" to save the configuration.
Now, whenever new CloudFront logs are added to the specified S3 bucket, the Lambda function will be automatically triggered to parse and send the data to OpenSearch.
- Make sure to have right permissions for the IAM role you have added.
Contributions are welcome! Please create a pull request or open an issue to discuss any changes.
This project is licensed under the MIT License. See the LICENSE file for details.