The DevOps DropSign in
Interview HubTopicsCertification PrepSavedAchievementsGlobal LeaderboardLearnTech BlogsTech News

Databases

Storage engines, migrations and zero-downtime changes.

TypeEverythingQuestions3Drills5
LevelAll levelsIntermediate1Advanced1Expert1

1 item at expert level · all topics

  • QuestionDevOps·expert·6 min+100 XP

    How do you safely rotate IAM credentials or database secrets without downtime?

    The safe pattern is overlapping validity. Create the new secret while the old one still works, get code that accepts either one deployed everywhere, confirm the new one is actually being used, then revoke the old one. Rotating in a single step guarantees a window where something is still holding a credential that no longer works.

    #Security#Operations#Database#AWS