79630959

Date: 2025-05-20 18:14:49
Score: 2.5
Natty:
Report link

Which version of the provider are you using? The documentation reference you provided is for data sources rather than resources, so this would be a better reference: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/elasticache_global_replication_group#engine-1.

resource "aws_elasticache_replication_group" "primary" {
  replication_group_id = "example-primary"
  description          = "primary replication group"

  engine         = "valkey"
  engine_version = "7.0" # or whichever version you need
  node_type      = "cache.m5.large"

  num_cache_clusters = 1
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (1):
Posted by: RoseSecurity