Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure Service Bus security when at rest

I know that Azure Service Bus is secure while in transit because of SSL, but I'm unable to find any information about if it's encrypted while at rest.

If the content of the message is sensitive in nature, can Azure be relied on to keep messages private while within the Azure infrastructure - or should we implement message security?

like image 615
Paul Deen Avatar asked Sep 14 '16 10:09

Paul Deen


Video Answer


3 Answers

As of 4/25/2018, the page that @tyler-pollack referenced, has been updated to specify that encryption at rest is provided at all tiers. https://docs.microsoft.com/en-us/azure/security/azure-security-encryption-atrest

You can see the update in this github commit: https://github.com/MicrosoftDocs/azure-docs/commit/66214db8a21eefcece6441ae566041b90b2615fa#diff-f55bddd3fba462832c4a2d0e7918f750

like image 116
Raj Rao Avatar answered Oct 14 '22 03:10

Raj Rao


You will have to encrypt the data yourself. There are currently no facilities built into the service bus for data at rest.

like image 35
Don Lockhart Avatar answered Oct 14 '22 03:10

Don Lockhart


Service Bus Premium currently supports encryption at rest - https://docs.microsoft.com/en-us/azure/security/azure-security-encryption-atrest#azure-resource-providers-encryption-model-support

like image 29
Tyler Pollak Avatar answered Oct 14 '22 03:10

Tyler Pollak