The DevOps DropSign in
Interview HubTopicsCertification PrepSavedAchievementsGlobal LeaderboardLearnTech BlogsTech News

AWS

IAM, VPC, S3, RDS, Lambda and the rest of the platform.

TypeEverythingLearn1Questions24Drills26Blogs4News9
LevelAll levelsBeginner6Intermediate32Advanced11Expert1

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