Remediation
This finding is a configuration review, not evidence that Synapse Link or Fabric Mirroring is active. Before migrating, confirm that the account and its API support continuous backup. Review workload eligibility, retention, restore requirements, regional availability, and pricing impact. Migration from periodic to continuous backup is irreversible.
From Azure Portalβ
- Open the Azure Cosmos DB account.
- Select Backup & Restore.
- Select Continuous backup.
- Choose the available continuous-backup retention option that meets the recovery requirement.
- Review the irreversible-change warning, then confirm the migration.
From Azure CLIβ
az cosmosdb update \
--name {{cosmosdb-account-name}} \
--resource-group {{resource-group-name}} \
--backup-policy-type Continuous
Verify the change:
az cosmosdb show \
--name {{cosmosdb-account-name}} \
--resource-group {{resource-group-name}} \
--query "backupPolicy.type" \
--output tsv
The command must return Continuous.