Legal hold: the duty starts before anyone files anything
The obligation to preserve begins when litigation becomes reasonably anticipated — which is usually earlier than the day the complaint arrives, and always earlier than anyone wants it to be.
The candidates worth automating are the frequent, boring and unambiguous ones. Automating a procedure nobody trusts just produces an automated mistake.
Runbook automation is the practice of turning documented manual procedures into scripts or workflows that a system can execute — either fully, or with a human approving each stage. It is the natural next step once a runbook has been followed enough times to be trusted, and the natural disaster if applied before that point.
The sequencing matters more than the tooling. A procedure that is inconsistent when a person runs it will be consistently wrong when a machine does, faster and at greater scale. Automate what is already reliable; document and stabilise what is not.
The intermediate step is undervalued: the system gathers the diagnostics, presents them, proposes the action, and waits for a human to approve. That captures most of the time saving — the tedious data-gathering — while keeping a person in the decision. It also builds the evidence you need to automate fully later, because you accumulate a record of how often the proposed action was the right one. Teams that jump straight to unattended execution usually lack that evidence and are relying on optimism.
Automation needs its own runbook: what it does, how to tell whether it ran, how to stop it, and what to do when it fails halfway. An automated procedure that fails in the middle leaves the system in a state no manual runbook describes, and that is the scenario where teams discover the automation was the only thing that understood the process.
Automated actions taken during an incident need to be visible afterwards: what ran, when, with what parameters, triggered by whom or by what, and what it changed. Without that, the incident timeline has gaps exactly where the system acted, and the postmortem cannot distinguish what the automation did from what the humans did. Emit the same record you would expect a person to leave.
Scripts encode assumptions about hostnames, credentials, API versions and directory layouts, and every one of those changes eventually. Unlike a stale document, stale automation fails loudly at the worst moment — or, worse, succeeds against the wrong target. Exercise automated procedures on a schedule in a non-production environment, and treat a failed exercise with the same seriousness as a failed backup restore.
Ettex Records holds the catalogue of automated procedures with owner, last exercise date and blast radius, Ettex Sheets tracks the candidate list with frequency and time saved so automation effort goes where it pays, and the underlying documents are the ones described in incident response plan and in the runbook itself.
Plainly: this is records and spreadsheets, not an automation platform. Execution belongs in purpose-built tooling; what this covers is deciding what to automate and keeping track of what you have.
Turning documented manual operational procedures into scripts or workflows executed by a system, either fully or with human approval at each stage.
Frequent, deterministic, low-risk procedures that are already reliable when performed manually.
The system gathers diagnostics and proposes an action while a human approves it — most of the time saving, with the decision retained.
Yes. Scripts encode assumptions that change. Exercise them on a schedule and treat failures as seriously as a failed backup restore.
The obligation to preserve begins when litigation becomes reasonably anticipated — which is usually earlier than the day the complaint arrives, and always earlier than anyone wants it to be.
The point of an SBOM is answering “are we affected?” in an hour instead of a fortnight. Produced by scanning a finished artefact, it usually cannot.
A flat parts list looks simpler and answers none of the questions a BOM exists for — what to buy, what it costs, and what a change breaks.