Promptles
DevOps & Deployment

Secret Management

intermediate

Definition

The careful way teams handle the sensitive things their apps need: passwords, API keys, signing tokens. The rules: never paste them into the code, never email them around, store them in a locked-down vault, and only hand them to the app at the moment it actually runs.

In the wild

An online store needs the password to its payments account. Instead of writing the password into the code where any developer could see it, the team puts it in a secure vault. The live website fetches it from the vault each time it starts up. And nobody else ever sees the actual value.

More from DevOps & Deployment