Skip to content

Commit 9db7937

Browse files
Address feedback: improve timeline clarity and rename localized string
Co-authored-by: BenjaminEngeset <[email protected]>
1 parent 7ac3e86 commit 9db7937

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ See [upgrade notes][1] for helpful information when upgrading from previous vers
3535
- Check that replica locations are in allowed regions by @BernieWhite.
3636
[#3441](https://github.com/Azure/PSRule.Rules.Azure/issues/3441)
3737
- Azure Cache for Redis:
38-
- Check that Azure Cache for Redis is migrated to Azure Managed Redis by @BenjaminEngeset.
38+
- Check that legacy Azure Cache for Redis instances are migrated to Azure Managed Redis by @BenjaminEngeset.
3939
[#3605](https://github.com/Azure/PSRule.Rules.Azure/issues/3605)
4040
- Managed Instance for Apache Cassandra:
4141
- Check that Managed Instance for Apache Cassandra clusters have availability zones enabled by @BenjaminEngeset.

docs/en/rules/Azure.Redis.MigrateAMR.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ Azure Cache for Redis is being retired. Migrate to Azure Managed Redis.
1919
Microsoft has announced the retirement timeline for Azure Cache for Redis across all SKUs.
2020
The recommended replacement going forward is Azure Managed Redis.
2121

22-
Azure Cache for Redis (Basic, Standard, Premium):
22+
Azure Cache for Redis (Basic, Standard, Premium) will be retired according to the following timeline:
2323

24-
- Creation blocked for new customers: April 1, 2026
25-
- Creation blocked for existing customers: October 1, 2026
26-
- Retirement Date: September 30, 2028
27-
- Instances will be disabled starting October 1, 2028
24+
- Creation blocked for new customers: April 1, 2026.
25+
- Creation blocked for existing customers: October 1, 2026.
26+
- Retirement Date: September 30, 2028.
27+
- Instances will be disabled starting October 1, 2028.
2828

2929
To avoid service disruption, migrate your workloads to Azure Managed Redis.
3030

src/PSRule.Rules.Azure/en/PSRule-rules.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,5 @@
131131
ResourceHasNoTags = "The resource does not have any tags. Expected tags: {0}."
132132
ActiveSecurityAlerts = "There are {0} active security alerts of high or medium severity."
133133
KeyValueShouldNotContainSecrets = "The key value '{0}' property should not contain secrets."
134-
AzureCacheRedisRetirement = "Azure Cache for Redis is being retired. Migrate to Azure Managed Redis."
134+
AzureCacheRedisMigrateAMR = "Azure Cache for Redis is being retired. Migrate to Azure Managed Redis."
135135
}

src/PSRule.Rules.Azure/rules/Azure.Redis.Rule.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Rule 'Azure.Redis.Version' -Ref 'AZR-000347' -Type 'Microsoft.Cache/redis' -Tag
125125

126126
# Synopsis: Azure Cache for Redis is being retired. Migrate to Azure Managed Redis.
127127
Rule 'Azure.Redis.MigrateAMR' -Ref 'AZR-000506' -Type 'Microsoft.Cache/redis' -Tag @{ release = 'GA'; ruleSet = '2025_12'; 'Azure.WAF/pillar' = 'Operational Excellence'; } {
128-
$Assert.Fail($LocalizedData.AzureCacheRedisRetirement)
128+
$Assert.Fail($LocalizedData.AzureCacheRedisMigrateAMR)
129129
}
130130

131131
#region Helper functions

0 commit comments

Comments
 (0)