Does Digital Ocean have something similar to Credstash or AWS Secrets Manager (both AWS services)?
Trying to decide on the most secure way to store environmental variables with sensitive information (like database access codes, for example).
Locally, I have .env file that is named in my .gitignore to prevent it being version controlled.
If just in a .env file or environment variables, what’s the best way to keep that secure for the app to run appropriately?
Much appreciated :)
Cheers
ADDITIONAL INFO:
I have a fullstack SPA (MongoDB, Node, React, Express) on the digital ocean droplet.
Note: Mirror from Stackoverflow (recommended I post this here).