Applications require a lot of sensitive information. Database passwords, API keys and secrets used for signing Jwts, just to name a few. If you ' re deploying your application using the now CLI, you can deploy your secret information right through the CLI and G Ive your code access to those secrets without exposing them directly in your source code. In this lesson, we'll cover how to add secrets to now, how to use a secret as the value of an environment variable and how To list and remove secrets on now.
// Create a secret now secrets add Super-secret-message "Mr Bond" // List Secrets now Secrets ls // Deploy and Assign Secret to environment Variable now-f-E [Email protected] Message // Remove Secret now Secrets rm super-secret-message Deploy with standard environment Variable Value now-f-e greeting=eggheads // Remove Deployment with Secret Now RM <deployment Id>
[NodeJS] Use Secrets when deploying applications and now