Description
Access Keys authenticate application access requests to data contained in Storage Accounts. A periodic rotation of these keys is recommended to ensure that potentially compromised keys cannot result in a long-term exploitable credential. The "Rotation Reminder" is an automatic reminder feature for a manual procedure.
Rationaleβ
Reminders such as those generated by this recommendation will help maintain a regular and healthy cadence for activities which improve the overall efficacy of a security program.
Cryptographic key rotation periods will vary depending on your organization's security requirements and the type of data which is being stored in the Storage Account. For example, PCI DSS mandates that cryptographic keys be replaced or rotated 'regularly', and advises that keys for static data stores be rotated every 'few months'.
For the purposes of this recommendation, 90 days will prescribed for the reminder. Review and adjustment of the 90 day period is recommended, and may even be necessary. Your organization's security requirements should dictate the appropriate setting.
Impactβ
This recommendation only creates a periodic reminder to regenerate access keys. Regenerating access keys can affect services in Azure as well as the organization's applications that are dependent on the storage account. All clients that use the access key to access the storage account must be updated to use the new key.
Auditβ
From Azure Portalβ
- Go to
Storage Accounts
. - For each Storage Account, under
Security + networking
, go toAccess keys
. - If the button
Edit rotation reminder
is displayed, the Storage Account is compliant. ClickEdit rotation reminder
and review theRemind me every
field for a desirable periodic setting that fits your security program's needs. If the buttonSet rotation reminder
is displayed, the Storage Account is not compliant.
From Powershellβ
$rgName = <resource group name for the storage> $accountName = <storage account name> $account = Get-AzStorageAccount -ResourceGroupName $rgName -Name $accountName Write-Output $accountName -> Write-Output "Expiration Reminder set to: $($account.KeyPolicy.KeyExpirationPeriodInDays) Days" Write-Output "Key1 Last Rotated: $($account.KeyCreationTime.Key1.ToShortDateString())" Write-Output "Key2 Last Rotated: $($account.KeyCreationTime.Key2.ToShortDateString())"
Key rotation is recommended if the creation date for any key is empty.
If the reminder is set, the period in days will be returned. The recommended period is 90 days.
Default Valueβ
By default, Key rotation reminders is not configured.
Referencesβ
- https://docs.microsoft.com/en-us/azure/storage/common/storage-create-storage-account#regenerate-storage-access-keys
- https://learn.microsoft.com/en-us/security/benchmark/azure/mcsb-privileged-access#pa-1-separate-and-limit-highly-privilegedadministrative-users
- https://learn.microsoft.com/en-us/security/benchmark/azure/mcsb-identity-management#im-3-manage-application-identities-securely-and-automatically
- https://learn.microsoft.com/en-us/security/benchmark/azure/mcsb-governance-strategy#gs-6-define-and-implement-identity-and-privileged-access-strategy
- https://learn.microsoft.com/en-us/security/benchmark/azure/mcsb-identity-management#im-8-restrict-the-exposure-of-credentials-and-secrets
- https://www.pcidssguide.com/pci-dss-key-rotation-requirements/
- https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-57pt1r5.pdf