Ensure 'Versioning' is set to 'Enabled' on Azure Blob Storage storage accounts
Description
Enabling blob versioning allows for the automatic retention of previous versions of objects. With blob versioning enabled, earlier versions of a blob are accessible for data recovery in the event of modifications or deletions.
Rationale
Blob versioning safeguards data integrity and enables recovery by retaining previous versions of stored objects, facilitating quick restoration from accidental deletion, modification, or malicious activity.
Impact
Enabling blob versioning for a storage account creates a new version with each write operation to a blob, which can increase storage costs. To control these costs, a lifecycle management policy can be applied to automatically delete older versions.
Audit Procedure
Audit from Azure Portal
- Go to
Storage accounts. - Click the name of a storage account with blob storage.
- In the
Overviewpage, on thePropertiestab, underBlob service, ensureVersioningis set toEnabled. - Repeat steps 1-3 for each storage account with blob storage.
Audit from Azure CLI
Run the following command to list storage accounts:
az storage account list
Run the following command to determine if a storage account has containers:
az storage container list --account-name <storage-account>
For each storage account with containers, ensure that the output of the below command contains "isVersioningEnabled": true:
az storage account blob-service-properties show --account-name <storage-account>
Audit from PowerShell
Run the following command to list storage accounts:
Get-AzStorageAccount
Run the following command to create an Azure Storage context for a storage account:
$context = New-AzStorageContext -StorageAccountName <storage-account>
Run the following command to list containers for the storage account:
Get-AzStorageContainer -Context $context
If the storage account has containers, run the following command to get the blob service properties of the storage account:
$account = Get-AzStorageBlobServiceProperty -ResourceGroupName <resource-group> -StorageAccountName <storage-account>
Run the following command to get the blob versioning setting for the storage account:
$account.IsVersioningEnabled
Ensure that the command returns True.
Expected Result
isVersioningEnabled should be true for all storage accounts with blob storage.
Remediation
Remediate from Azure Portal
- Go to
Storage accounts. - Click the name of a storage account with blob storage.
- In the
Overviewpage, on thePropertiestab, underBlob service, clickDisablednext toVersioning. - Under
Tracking, check the box next toEnable versioning for blobs. - Select the radio button next to
Keep all versionsorDelete versions after (in days). - If selecting to delete versions, enter a number of in the box after which to delete blob versions.
- Click
Save. - Repeat steps 1-7 for each storage account with blob storage.
Remediate from Azure CLI
For each storage account requiring remediation, run the following command to enable blob versioning:
az storage account blob-service-properties update --account-name <storage-account> --enable-versioning true
Remediate from PowerShell
For each storage account requiring remediation, run the following command to enable blob versioning:
Update-AzStorageBlobServiceProperty -ResourceGroupName <resource-group> -StorageAccountName <storage-account> -IsVersioningEnabled $true
Default Value
Blob versioning is disabled by default on storage accounts.
References
- https://learn.microsoft.com/en-us/cli/azure/storage/account
- https://learn.microsoft.com/en-us/cli/azure/storage/account/blob-service-properties
- https://learn.microsoft.com/en-us/powershell/module/az.storage/get-azstorageaccount
- https://learn.microsoft.com/en-us/powershell/module/az.storage/new-azstoragecontext
- https://learn.microsoft.com/en-us/powershell/module/az.storage/get-azstoragecontainer
- https://learn.microsoft.com/en-us/powershell/module/az.storage/get-azstorageblobserviceproperty
- https://learn.microsoft.com/en-us/powershell/module/az.storage/update-azstorageblobserviceproperty
- https://learn.microsoft.com/en-us/azure/storage/blobs/versioning-overview
- https://learn.microsoft.com/en-us/azure/storage/blobs/lifecycle-management-overview
Profile
Level 2