I. Overview

%%{init: { 'theme': 'base', 'themeVariables': { 'edgeLabelBackground': '#fff' }}}%%
flowchart LR
    A["Recovery plan referencing an\nuntracked, stale system list"] -- "Need accurate mapping of\nassets to recovery priority" --> B["Maintained DR Asset\nRegister"]
    style A fill:#f9f9f9,stroke:#333,stroke-width:3px
    style B fill:#e1f5fe,stroke:#01579b,stroke-width:3px

Definition: A DR Asset Register is the current, validated inventory of every system, application, and piece of infrastructure in scope for disaster recovery, mapped to its business owner, dependencies, criticality tier, and per-asset RTO/RPO targets.

Features:
( Ownership ) Maintained by the IT infrastructure or asset management team in coordination with the DR coordinator.
( Foundational Role ) Serves as the factual foundation every DR plan is sequenced against.
( Sequencing Risk ) A DR plan built on a stale asset list recovers systems in the wrong order or misses undocumented dependencies.
( Data Integrity ) A stale register can point recovery efforts at infrastructure that no longer exists.

II. Structure & Process

sequenceDiagram
    participant Owner as "Asset/System Owner"
    participant Coordinator as "DR Coordinator"
    participant Register as "DR Asset Register"
    participant Plan as "DR Plan Template"

    Owner->>Coordinator: "Report new or changed system"
    Coordinator->>Register: "Update entry with tier, RTO/RPO, dependencies"
    Coordinator->>Plan: "Feed prioritized asset list into recovery plan"
    Coordinator->>Register: "Reconcile against CMDB on fixed cadence"
FieldDescription
Asset/System NameThe application, database, or infrastructure component being tracked.
Business OwnerThe individual or team accountable for the asset.
Criticality TierRecovery priority tier assigned per the DR Approach Document.
DependenciesUpstream and downstream systems required for this asset to function.
Target RTOMaximum acceptable downtime for this specific asset.
Target RPOMaximum acceptable data loss for this specific asset.
Recovery Site/MethodWhere and how the asset is restored (hot site, cloud failover, backup restore).
Last Validated DateDate the entry was last confirmed accurate against the live environment.

III. Best Practices & Comparison

DocumentPrimary PurposeWhen UsedOwner
DR Asset RegisterTrack which assets exist and their recovery priorityContinuously maintained, discovery-drivenIT infrastructure/asset management
DR Plan TemplateProvide step-by-step recovery procedures per systemBuilt from register data; invoked during a disasterSystem/application owners, DR coordinator
DR Approach DocumentDefine criticality tiers and recovery strategy optionsSet once, revisited periodicallyDR coordinator, IT/security leadership
  • Reconcile the register against the CMDB or cloud asset inventory on a fixed cadence, not only before an exercise.
  • Record dependencies explicitly — a missed dependency is the most common cause of a failed recovery sequence.
  • Assign every asset a business owner accountable for confirming its criticality tier and recovery targets.
  • Treat an unvalidated entry older than the review cadence as untrustworthy until re-confirmed.

Related: DR Plan Template, DR Approach Document. See also Cloud Backup & Recovery Testing Tracker for cloud-specific restore validation.

Last updated 18 Aug 2026, 00:00 UTC. history