An Azure service that is used to provision Windows and Linux virtual machines.
Yes. The error is expected and is caused by the presence of incremental restore points associated with the managed disk. Azure Managed Disks require a disk and its associated incremental snapshots or restore points to use the same Disk Encryption Set, which prevents changing the disk's encryption properties while those restore points exist. [learn.microsoft.com], [docs.azure.cn]
For your 1st question, I am not aware of any docuementd supported method that preserves the existing incr restore point chain while performing an in-place conversion of the source disk from SSE-PMK to SSE-CMK. The platform restriction effectively requires removal of the incremental restore-point dependency before the disk encryption settings can be changed. [learn.microsoft.com], [docs.azure.cn]
For production workloads, a practical sequencing approach is:
- Take and validate a recent backup before making any changes.
- Plan a maintenance window for the encryption transition.
- Stop backup protection and ensure any restore points that are blocking the operation are removed.
- Update the disk to use the target disk encryption Set (SSE-CMK).
- Verify Disk Encryption Set access to the Key Vault and confirm the disk reports the expected encryption configuration.
- Re-enable backup protection and create a new recovery point.
- Perform a test restore or recovery point validation before closing the change.
The important consideration is that the backup history associated with the pre-conversion disk should be treated as part of the old protection chain. After the encryption change, Azure Backup establishes a new backup lineage for the CMK-encrypted disk rather than continuing the existing incremental chain. This means a short recovery-point gap during the transition should be expected and planned for.
Bottom line: Based on the documented managed disk encryption restrictions, there is no supported in-place approach that both preserves the existing incremental restore-point chain and changes the disk from SSE-PMK to SSE-CMK. The recommended approach is to perform the encryption transition in a controlled maintenance window and then establish a new backup chain afterward. [learn.microsoft.com], [docs.azure.cn]
Help make this community better for everyone: if this answer resolved your issue, please accept it or leave an upvote. If not, share more details in a comment so we can continue the discussion and find the right solution.