Reputation: 111
Is it possible for one lambda function to deploy a new lamda function with serverless.yml and handler.py stored in s3 or github?
I am using serverless framework and python
Upvotes: 0
Views: 346
Reputation: 13055
AWS Lambda can deploy another lambda with a s3 trigger. The simple flow is like this.
Bundle project and upload to S3 --> S3 Trigger --> Lambda (Create or Update function Code)
Here is the complete documentation
Upvotes: 1