Your monitoring dashboard is screaming. The on-call phone won’t stop buzzing. And the one engineer who knows the infrastructure inside out—the person who built half the Terraform modules and holds the only SSH key for the legacy bastion—just walked out the door. Not metaphorically. Literally. They resigned, were terminated, or became unreachable in the middle of an active degradation. For lean teams running cloud-native systems, this isn’t a disaster movie plot. It’s a predictable failure mode that most operational playbooks ignore. The primary admin departure during an incident combines two high-stress events: a technical outage and a sudden loss of institutional knowledge. The goal here is not to panic. It’s to execute a pre-planned, repeatable sequence that preserves system integrity, maintains audit trails, and resolves the incident without the person who used to be the single point of failure.
Why the “Bus Factor” Hits Hardest During Incidents
The bus factor—the number of people who would need to be unavailable before a project stalls—is a familiar concept. For small teams, that number often hovers around one. When the sole subject matter expert for a critical subsystem becomes unavailable during an active incident, the team faces a compound problem: the original outage is still unfolding, and now access, context, and decision-making authority are all in question. This isn’t just a technical problem. It’s a coordination and access-control problem. The departing admin might be the only one with credentials for a key service, the only mental map of a fragile deployment pipeline, or the only person who remembers why a particular workaround was applied six months ago. Without a practiced handoff mechanism, the remaining team must reverse-engineer the system under fire. That’s a recipe for prolonged downtime and risky shortcuts.
Immediate Steps: Secure Control Without Causing More Damage
The first priority is to regain operational control without triggering additional failures. Resist the urge to immediately revoke all credentials or lock accounts—this can break automation or disrupt legitimate recovery efforts. Instead, follow a graduated access-control protocol that you’ve already documented and tested.
1. Activate the Emergency Access Procedure
If you’ve written a recovery checklist before you need it, this is the moment it proves its worth. The checklist should specify who has break-glass access to the identity provider, which accounts must be preserved for service-to-service authentication, and how to rotate credentials without invalidating active sessions that might be keeping parts of the system alive. For teams using AWS IAM, this means understanding the difference between revoking console access and rotating access keys. For GCP or Azure, it means knowing which service accounts are tied to automated deployments and which are personal. If you don’t have a checklist, your first step is to identify the minimum set of credentials needed to stabilize the system and restrict everything else.
2. Establish a Temporary Incident Commander
In a small team, the departing admin was often the de facto incident commander. Now someone else must fill that role, and they need explicit authority to make decisions about access, rollbacks, and external communication. This person should not be the same individual who is hands-on-keyboard trying to fix the technical issue. Splitting these roles—even in a team of three—prevents tunnel vision and ensures that access changes are logged and reviewed. The incident commander’s first action: declare the departure a compounding event and log it in the incident channel. This creates a clear timestamp and context for any subsequent access changes, which will be invaluable during the post-incident review.
Document Every Action in Real Time
During the scramble to restore service, documentation often gets sacrificed. But when a key person is gone, every action taken by the remaining team must be recorded—not for blame, but for reconstructing the timeline later. Use the incident channel or a shared document to note which credentials were used, which systems were accessed, and what changes were made. This is especially critical if the departed admin had access to production data. A clear record protects the team and demonstrates responsible handling to stakeholders and auditors.
Stabilizing the System Without the Missing Admin
Once access is under control, the focus shifts to restoring service. Without the person who knows the system best, the remaining team must rely on runbooks, monitoring data, and conservative decision-making. The principle here is to avoid making the incident worse by guessing. If the runbook says “ask Alice,” and Alice is gone, do not improvise a complex fix. Instead, look for the safest path to a degraded-but-stable state.
Use Runbooks as a Scaffold, Not a Script
Well-maintained runbooks are the closest thing to having the expert in the room. They should describe not just the steps to resolve common incidents, but also the why behind those steps. When the primary admin leaves, the remaining team needs to understand the intent of each procedure so they can adapt it to the current situation. If your runbooks are outdated or missing, this incident becomes a forcing function to improve them—but that’s a post-incident task. For now, focus on the runbooks that exist and use them to identify safe rollback paths, known-good configuration states, and service dependencies.
Use Infrastructure as Code Repositories
Cloud-native teams typically manage infrastructure through version-controlled templates—Terraform, CloudFormation, Pulumi, or similar. The departing admin’s most recent commits are a record of intended state. If the incident involves configuration drift, the repository can serve as a source of truth. Pull the latest stable branch, compare it against the running environment, and identify discrepancies. This approach is slower than asking the expert, but it’s repeatable and auditable. It also avoids the risk of applying a “fix” that the admin had in their head but never committed.

Managing the Human Side of the Departure
An admin leaving during an incident is rarely a neutral event. It may be a resignation that was already planned, a sudden termination, or a personal emergency. Regardless of the circumstances, the remaining team is under both technical and emotional strain. Acknowledge the stress, but keep the focus on the technical recovery. If the departure was contentious, avoid speculation in incident channels. If it was a planned offboarding that coincided with an outage, the team may already have a transition document—use it. If not, the incident commander should designate one person to handle any necessary HR or legal communications so the technical responders can stay focused.
Communicate Status Clearly to Stakeholders
Stakeholders don’t need to know the admin left unless it directly impacts the recovery timeline or requires a decision they must make. Frame updates around the incident itself: what’s affected, what’s being done, and when the next update will come. If the departure forces a delay—for example, because only the departed admin had production access and break-glass procedures are slow—state that a “personnel change” has extended the recovery window. Be factual, not dramatic. The goal is to maintain trust while buying time to execute the technical response.
Post-Incident: Closing the Single-Person Risk
Once the incident is resolved, the real work begins. A departure during an incident exposes every single point of failure in your team’s structure. The post-incident review should produce a concrete, time-bound plan to eliminate those single-person dependencies. This isn’t about blaming the person who left; it’s about recognizing that any lean team is vulnerable to this scenario and building resilience against it.
Audit Access and Credential Distribution
Map every critical system, service, and third-party tool to the individuals who have access. Identify any resource that has only one person with administrative or root access. For each, create a break-glass procedure that allows at least two other team members to gain emergency access. Store break-glass credentials in a secure, audited vault—not in a shared document or a former admin’s email. Tools like AWS Secrets Manager, HashiCorp Vault, or even a physical safe with documented retrieval procedures can work, depending on your team’s size and compliance requirements.
Cross-Train Through Simulated Departures
Reading a runbook is not the same as executing it under pressure. Schedule regular “bus-factor drills” where a team member is declared unavailable—no phone, no Slack—and the remaining team must resolve a simulated incident using only documented procedures. These drills reveal gaps in runbooks, access, and mental models. They also build the muscle memory that makes a real departure less destabilizing. For very small teams, even a two-hour tabletop exercise can surface critical blind spots.

Embed Knowledge in Code and Configuration
The most resilient teams treat infrastructure as the primary documentation. When recovery steps are encoded in Terraform modules, Ansible playbooks, or CI/CD pipelines, they don’t leave with the person who wrote them. Post-incident, review any manual steps the departed admin performed and automate them. If a step can’t be automated, document it with enough context that someone unfamiliar with the system can execute it at 3 a.m. Include the “why” behind each step—the business impact, the dependencies, the expected outcomes. This transforms tribal knowledge into shared, testable assets.
FAQ: Admin Departure During an Incident
What’s the first thing I should do if the only person with production access leaves during an outage?
Activate your emergency access procedure. If you don’t have one, contact your cloud provider’s support team immediately—AWS, GCP, and Azure all have processes for account recovery when the root user is unavailable, though they require proof of ownership. Simultaneously, check if the departed admin’s credentials are still active in your identity provider. If they are, use them only to create new admin accounts, then rotate all credentials. Document every action for the post-incident review.
How can a two-person team possibly avoid single-person dependencies?
It’s difficult but not impossible. The key is to ensure that both people have the capability to perform critical tasks, even if one person normally handles them. This means shared access to all systems, cross-training on core procedures, and a commitment to pair on complex changes. It also means having a documented, tested plan for what happens if both people are unavailable—such as a retainer agreement with a trusted contractor or a detailed handoff document for a temporary replacement.
Should we revoke the departed admin’s access immediately?
Not necessarily during an active incident. If the admin’s credentials are the only way to access a critical system, revoking them could lock you out and worsen the outage. Instead, use those credentials to create new admin accounts for the remaining team, then revoke the old ones once service is stable. This is a calculated risk that should be documented and approved by the incident commander. After the incident, conduct a full access audit and rotate all secrets.
How do we prevent this from derailing our next incident response?
Treat the departure itself as a sev-1 incident for your operational resilience. Within one week, complete an access audit and ensure no single person holds the only keys to any system. Within two weeks, update runbooks for any gaps discovered during the incident. Within one month, run a drill that simulates a key person’s unavailability. Make these steps part of your standard offboarding checklist so they’re not forgotten when someone leaves under normal circumstances.

Building a Team That Survives Its Own Success
Lean teams often pride themselves on individual expertise. But when that expertise walks out the door—especially during a crisis—the team’s true resilience is tested. The goal isn’t to eliminate reliance on skilled people; it’s to ensure that their knowledge is accessible, their access is shared, and their departure doesn’t become a second incident. This requires deliberate, ongoing investment in runbooks, cross-training, and access management. It’s not glamorous work, but it’s what keeps the lights on when everything else goes dark.
For a deeper dive into building operational resilience before you need it, see our guide on writing the recovery checklist. The time to prepare for a key person’s departure is not during the exit interview—it’s months before, when the team is stable and the systems are humming. That’s when you have the clarity to document, cross-train, and test. Do it now, and the next incident won’t depend on who’s still in the room.