AWS Lambda functions read configuration from the Environment block: a flat key-value map with strict rules — keys must be letters, digits and underscores, cannot start with AWS_, and the whole block is capped at 4 KB. Hand-building that JSON, or composing the --environment argument for the AWS CLI, from an existing .env is fiddly and easy to get subtly wrong.
The .env to AWS Lambda Converter produces the exact artifact you need. Choose raw JSON for the console/SDK/IaC, a CLI-ready key=value,key2=value2 string for aws lambda update-function-configuration, or a serverless.yml environment block for the deployment frameworks. Values are validated as strings, keys are checked against Lambda's rules, duplicates are reported, and the output size is measured against that 4 KB budget.
Both processes and infrastructure benefit from a deterministic, reviewable conversion that never leaves the browser — and never leaks a secret to a server.