Memory store (Redis) does not use Standard Tier for High Availability Affecting Redis service in Google


Severity

0.0
medium
0
10
Severity Framework
Snyk CCSS
Rule category
General/ Data

Is your environment affected by this misconfiguration?

In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.

Test your applications
Frameworks
CSA-CCM
  • Snyk IDSNYK-CC-00428
  • creditSnyk Research Team

Description

Not using the Redis Standard Tier might negatively impact service availability.

How to fix?

Set tier to STANDARD_HA to avoid impacting service availability.

Example Configuration

resource "google_redis_instance" "allowed" {
  name           = "memory-cache"
  memory_size_gb = 1
  tier = "STANDARD_HA"
}