如何将 CodeCommit 存储库中的代码用于 Lambda 函数?
我想使用 CodeCommit 存储库中的代码用作 lambda 函数,而不是在 lambda 本身中编写完整的代码。有可能实现吗?
I want to use the code in my CodeCommit repository to be used as lambda function instead of writing the complete code in lambda itself. Is it possible to achieve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,在控制台或 cli 中不是这样,但这在 CI/CD 管道中很常见。
代码提交-> CodeBuild(或其他一些工具)->拉姆达
更详细地说,通常有一个管道(CodePipeline、CircleCI、Jenkins 等),由存储库中的提交触发,然后管道克隆代码,CodeBuild(其他一些工具)对其进行处理,然后管道将其部署到 lambda。
对于 lambda 代码准备,CodeBuild 中的通常过程是压缩 lambda 代码并将其发布到工件存储桶。
Not by default in console or cli, but this is very common in CI/CD pipelines.
CodeCommit -> CodeBuild (or some other tools) -> Lambda
In more detail, usually, there is a pipeline (CodePipeline, CircleCI, Jenkins etc) which is triggered by commit in the repo, then pipeline clone code, CodeBuild(some other tool) process it, then pipeline deploys it to lambda.
In the case of lambda code preparation, the usual process in CodeBuild is to zip the lambda code and publish it to artifacts bucket.