I have developed a Discord bot that I would like to push to AWS for a more persistent service than when running on my machine.
That bot uses Google Service Account to access Google spreadsheet data that is currently sitting on my machine as a JSON file.
What's the most secure way to package this as a Docker component (or more generally to move that to some AWS server if using Docker is not the best way to approach this)?
I understand that for most credentials it's best to use environment variables. That would work for the Discord bot credentials but not for Google's which are too verbose.
The bot is developed in Rust.