What are the best practices for managing secrets securely?

0
2
Asked By CuriousCat007 On

I'm looking for effective strategies for managing secrets in a secure manner. For instance, how do you handle ephemeral tokens for your workers? Any recommendations on tools or methods that you find particularly useful?

5 Answers

Answered By JokesOnYou21 On

Honestly, the best practice I've seen involves just keeping secrets in the code in my repo...just kidding! But you wouldn't believe some actual strategies I've come across!

Answered By SecuritySavvy On

Rotating secrets automatically and using short-lived tokens tied to specific service identities can really minimize the impact if a secret gets exposed. Regular access audits are also crucial, as many folks overlook that.

Answered By CloudGuru42 On

HashiCorp Vault is definitely a strong choice, though I'm cautiously optimistic about new options. If I could start fresh, I might go for OpenBao since I like to keep my APIs tool-agnostic. It really helps streamline things without being locked into a specific cloud provider.

Answered By CodeNinja88 On

A lot of people here mention Vault by HashiCorp. It seems great for various environments, especially when managing secrets across teams. I've found it useful for integrating with GitHub Runners, which reduces the hassle of constantly being pinged for secrets.

TechyTim92 -

Totally agree! I prefer Vault over other solutions, but I think it requires some bias since I’ve become the go-to expert on it.

Answered By AWSWizard99 On

I initially used AWS Secrets Manager but switched to Vault because of the cost issues. It was tough to justify the expense, but it ended up working well for my needs. If you're using AWS with Kubernetes, think about utilizing IAM roles; they can reduce the hassle of secret rotation.

DevSensei01 -

That's interesting! Realizing the potential overhead of secrets management is key. How do you manage customer access if you’re using IAM roles?

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.