2.10 Ensure 'Update Channel' is set to 'Stable' (Automated)
Profile Applicability
- Level 1
Description
Ensure all Azure Cache for Redis instances are configured to use the stable update channel.
Rationale
By using the stable update channel, organizations minimize the risk of introducing issues that may exist in preview update streams. The stable update channel improves security posture and reduces exposure to vulnerabilities.
Impact
Updates and new features will take longer to arrive when using the stable update channel.
Audit Procedure
Audit from Azure Portal
- Go to
Azure Cache for Redis. - Select the name of a cache.
- Under Settings, select Schedule updates.
- Ensure
Update Channelis set to Stable. - Repeat steps 1-4 for each cache.
Audit from Azure CLI
Run the following command to list caches:
az redis list
For each cache, run the following command to get the updateChannel setting:
az redis show --resource-group <resource-group> --name <cache> --query updateChannel
Ensure "Stable" is returned.
Audit from PowerShell
Run the following command to list caches:
Get-AzRedisCache
Run the following command to get the cache in a resource group with a given name:
$cache = Get-AzRedisCache -ResourceGroupName <resource-group> -Name <cache>
Run the following command to get the UpdateChannel setting:
$cache.UpdateChannel
Ensure Stable is returned.
Repeat for each cache.
Expected Result
The Update Channel should be set to Stable for each Azure Cache for Redis instance.
Remediation
Remediate from Azure Portal
- Go to
Azure Cache for Redis. - Select the name of a cache.
- Under Settings, select Schedule updates.
- Set
Update Channelto Stable. - Select Save.
- Repeat steps 1-5 for each cache requiring remediation.
Remediate from Azure CLI
For each cache requiring remediation, run the following command to set updateChannel to Stable:
az redis update --resource-group <resource-group> --name <cache> --set "updateChannel=Stable"
Remediate from PowerShell
For each cache requiring remediation, run the following command to set UpdateChannel to Stable:
Set-AzRedisCache -ResourceGroupName <resource-group> -Name <cache> -UpdateChannel Stable
Default Value
By default, 'Update Channel' is set to 'Stable'.
References
CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 2.2 Ensure Authorized Software is Currently Supported | X | X | X |
| v7 | 2.2 Ensure Software is Supported by Vendor | X | X | X |
MITRE ATT&CK Mappings
| Techniques / Sub-techniques | Tactics | Mitigations |
|---|---|---|
| T1190 | TA0001 | M1051 |