golang
Authenticate your services with Vault and JWTs
· β˜• 7 min read
Sometimes, you may want your services to be able to talk to each other in an authenticated manner, and even perform some authorization. This is not easy to do and you might have scratched your head a bunch about how to do it. In this post I’m going to show you how to do something like this using hashicorp’s Vault. At the end of this post you’ll be able to issue and validate authorization tokens to make sure your services communicate in an authenticated and secure manner.

Unit Testing With Vault in Go
· β˜• 9 min read
Everything you have always wanted to know about how to use Hashicorp Vault in your unit tests, but were too afraid to ask.