Recommendations for Secrets Use from an AWS Application
How do I ensure that my app uses secrets securely ( on AWS )?
- Create IAM roles for each application.
- Grant those roles the ability to retrieve secrets
- Update your application code to use GetSecretValue API calls.
Additional Tips
- This can, of course, be mapped to any cloud provider.
- Also, use git-secrets (agent) to ensure that secrets aren’t accidently committed to your git repo.
Leave a Reply