lambdasync
Version:
Easy sync between local code and AWS lambda functions
18 lines (10 loc) • 384 B
Markdown
## secrets (environment variables)
=====================================
{{vars}}
# Usage:
AWS Lambda lets you set secrets that are available to your Lambda function through `process.env`.
**Set secrets with:**
`lambdasync secret set db=production`
This will then be available as `process.env.db` to your Lambda function.
**Remove secrets with:**
`lambdasync secret remove db`