DEV Community

Discussion on: Where do you keep credentials for your Lambda functions?

Collapse
 
pavelloz profile image
Paweł Kowalski

When im developing a function i keep it locally (or i keep it in lambda configuration, you can pass env.* - docs.aws.amazon.com/lambda/latest/... ).

When it gets plugged into the stack (the serious approach), its prepared somehow on the fly by scripts provided by our devops inside docker container before deploying the function.