Say I have a firestore key or an api key that I need to use to connect to some third party, and I want to import that in my allocated servers through something like an environment variable, how can I do that while keeping the value safe (ie: put into the environment at run time and not visible by anyone)?
Don’t know if it’s the right answer, but I stored it in the build config variables. The secret is in plain sight for anyone who has access to the project, but I don’t know of any other way to do this outside of using something like a docker build, but even then it’s basically in plain sight for anyone who has access to the image.