There are some cons for using single repository for all my lambda functions of a project like:-
- Size of deployment package becomes huge. So, when only 1 lambda is changed, entire package is recreated and deployed to AWS.
Also, different repositories for different lambdas can give us privilege of changing lambda code without affecting other lambdas, but it has its own cons.
So, what is the best design for coding in the AWS lambdas?