Reputation: 377
I don't know whther its possible to deploy to Lambda Function using Code Deploy in CodePipeline as I don't see any Target there. if its possible How we can set it in aws console?
Upvotes: 0
Views: 165
Reputation: 1201
I don't know whther its possible to deploy to Lambda Function using Code Deploy in CodePipeline
Yes it is.
There are various ways you can achieve this. The most straight forward way is to use CodePipeline that is triggered by a CodeCommit repository for a SAM package.
CodeDeploy will deploy the SAM package in a pipeline stage which will include your Lambda function.
Here is a tutorial from AWS Docs.
Upvotes: 1