Live data from Hacker News

Do not use secrets in environment variables

nodejs-security.com

1–10 of 96 posts

Re: Do not use secrets in environment variables

#4

I actually liked this article. A great explainer in why environment variables are a terrible idea. Nike actually open-sourced their Keystore solution if anyone is curious. It was called cerberus.

TIL Nike (the shoe company) has a surprisingly intense OSS presence.

https://github.com/orgs/Nike-Inc/repositories

Re: Do not use secrets in environment variables

#5

I actually liked this article. A great explainer in why environment variables are a terrible idea. Nike actually open-sourced their Keystore solution if anyone is curious. It was called cerberus.

TIL Nike (the shoe company) has a surprisingly intense OSS presence. https://github.com/orgs/Nike-Inc/repositories

> hal provides an AWS Lambda Custom Runtime environment for your Haskell applications.

Didn't expect that from Nike.

Re: Do not use secrets in environment variables

#6

I actually liked this article. A great explainer in why environment variables are a terrible idea. Nike actually open-sourced their Keystore solution if anyone is curious. It was called cerberus.

TIL Nike (the shoe company) has a surprisingly intense OSS presence. https://github.com/orgs/Nike-Inc/repositories

> Nike (the shoe company)

as opposed to Nike, the Ancient Greek goddess of Victory, who contributes essentially nothing back to the OSS community

Re: Do not use secrets in environment variables

#9

this is mostly about not using .env files

I'm not sure if I understood something wrong, but .env files are for development, not production. It never crossed my mind to use .env files for production deployments, but skimming the blog post, it seems like people do ship a .env file to their production environment?

Re: Do not use secrets in environment variables

#10

this is mostly about not using .env files

Yes, not so much about environment variables which can be injected by your hosting environment which as far as I know shouldn’t really be an issue (assuming your hosting environment sources them securely).
Post reply on HN