Environment variables (Serverless framework tutorial, #11)

Learn how to use Environment Variables with Serverless and AWS Lambda. These allow you to store things like database connection settings and API keys. Environment variables can be shared across multiple functions or you can limit them to specific functions only. Please note that environment variables should not be used for sensitive data such as passwords. You should encrypt them with KMS or with a plugin for Serverless.
Back to Top