vault posts

Because modern software is so complex it needs to use secrets and confidential information, such as API keys, tokens, and the older usernames and passwords for connecting to remote servers and databases.
While once it might have been seen as okay to store these alongside the code itself, these days — especially in light of the 12-factor app movement — that's no longer the case. It's considered bad security practice — with good reason — to keep any kind of secure information within your code.
Consequently, a range of approaches and tools have been developed to keep credentials out of code bases, keeping them secure and readily available to the code as and when required.
In this tutorial, you're going to learn how to manage Go application secrets with HashiCorp Vault.
If you're a PHP developer, check out the PHP version of this tutorial.
Prerequisites
To follow along …