I am using CircleCI as a CI/CD tool to deploy to AWS S3. While there are commands provided for deploying to s3 bucket and EC2, I found no commands for deploying to lambda. Is there a way to directly deploy to AWS lambda using CircleCI?
It is possible to deploy lambda function via aws-cli as explained here (developer.amazon.com/blogs/post/Tx1UE9W1NQ0GYII/P…), but I would recommend Serverless (serverless.com), a framework for development for developing using AWS lambda. Serverless has lot of capabilities that would help you throughout the development lifecycle. Its very easy to get started, easier to automate and most importantly its a more scalable approach.
Sanghamitra Roy Chowdhury
JavaScript Developer
Philip Davis
Software developer
Hi Sanghamitra. The good news is that there is a simple solution -- even simpler than the old infrastructure I'm currently using. I wrote about both here: decembersoft.com/posts/how-to-deploy-to-aws-lambd…
Thanks for the question!