An Azure service for virtual machines (VMs) that helps address organizational security and compliance requirements by encrypting the VM boot and data disks with keys and policies that are controlled in Azure Key Vault.
What "SSE with PMK" means
SSE = Server-Side Encryption and PMK = Platform-Managed Key.
This is the default encryption that Azure applies to every managed disk automatically and no setup, no cost, and no performance impact. https://learn.microsoft.com/en-us/azure/virtual-machines/disk-encryption
Your disk data is encrypted at rest using 256-bit AES (FIPS 140-2 compliant) as it persisted to the Azure Storage clusters.
The encryption key (PMK) is generated, stored, rotated, and is fully managed by Microsoft you don't see or handle it.
This is always on and cannot be disabled for managed disks.
How the encryption actually works
- Think of it like BitLocker at the storage layer.
- When the VM writes data, it travels to the underlying Azure Storage and is encrypted there at rest.
- When the VM reads data, Azure transparently decrypts it and hands it back the OS, applications, and authorized users see normal, readable data. - https://learn.microsoft.com/en-us/azure/storage/common/storage-service-encryption
- So, the encryption protects the physical media and if a disk/drive were ever decommissioned, removed, or re-assigned to another host, the raw data on the platter is unreadable without the key.
Your specific question is : "Does this mean I can't move data out of the server?" - No SSE with PMK does NOT block you from copying, moving, or exporting your data.
This is the most common misconception. Here's the key point:
- SSE protects data at rest on the storage media, not in use. Once an authorized VM or user accesses the disk, the data is automatically decrypted and behaves like any normal file.
- You can still copy files off the server, transfer data over the network, back up, snapshot, or export normally. SSE is invisible to your applications and users. - https://learn.microsoft.com/en-us/azure/storage/common/storage-service-encryption
- SSE is about compliance and protection against physical theft / media re-assignment, not about restricting data movement or access control. SSE with PMK = your data is automatically encrypted on Azure's disks behind the scenes, but it stays fully usable and movable for anyone with legitimate access to the VM.