#Lambda #AWS #CLI

Local to Lambda via Aws CLI

Problem Handing source control of Lambda functions from your local PC to AWS Lambda. I’ve overwritten code in one Lambda function thinking I was in another with the inline editor that is built within the AWS Lambda platform. This was totally my fault, but I would put a practice in place that would stop this from happening again. Solution Implement source control via BitBucket & Sourcetree. Develop locally and push coding changes up to S3 bucket (with versioning enabled) and update Lambda function code via CLI. ...