Description
For increased security, regenerate storage account access keys periodically.
Rationaleβ
When a storage account is created, Azure generates two 512-bit storage access keys which are used for authentication when the storage account is accessed. Rotating these keys periodically ensures that any inadvertent access or exposure does not result from the compromise of these keys.
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β
Regenerating access keys can affect services in Azure as well as the organization's applications that are dependent on the storage account. All clients who 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
. - Review the date in the
Last rotated
field for each key.
If the Last rotated
field indicates value greater than 90 day [or greater than your organization's period of validity], the key should be rotated.
From Azure CLIβ
- Get a list of storage accounts:
az storage account list --subscription <subscription-id>
Make a note of id
, name
and resourceGroup
.
- For every storage account make sure that key is regenerated in past 90 days:
az monitor activity-log list --namespace Microsoft.Storage --offset 90d --query "[?contains(authorization.action, 'regenerateKey')]" --resource-id <resource id>
The output should contain:
"authorization"/"scope": <your_storage_account> AND
"authorization"/"action": "Microsoft.Storage/storageAccounts/regeneratekey/action" AND
"status"/"localizedValue": "Succeeded"
"status"/"Value": "Succeeded"
Default Valueβ
By default, access keys are not regenerated periodically.
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-2-protect-identity-and-authentication-systems
- https://learn.microsoft.com/en-us/security/benchmark/azure/mcsb-governance-strategy#gs-6-define-and-implement-identity-and-privileged-access-strategy
- https://www.pcidssguide.com/pci-dss-key-rotation-requirements/
- https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-57pt1r5.pdf