You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Default port is based on the default engine port
325
+
description = "VPC traffic"
326
+
cidr_ipv4 = module.vpc.vpc_cidr_block
327
+
}
328
+
}
329
+
330
+
# Subnet Group
331
+
subnet_group_name = local.name
332
+
subnet_group_description = "Valkey replication group subnet group"
333
+
subnet_ids = module.vpc.private_subnets
334
+
335
+
# Parameter Group
336
+
create_parameter_group = true
337
+
parameter_group_name = local.name
338
+
parameter_group_family = "valkey7"
339
+
parameter_group_description = "Valkey replication group parameter group"
340
+
parameters = [
341
+
{
342
+
name = "latency-tracking"
343
+
value = "yes"
344
+
}
345
+
]
346
+
347
+
tags = local.tags
348
+
}
349
+
```
350
+
271
351
## Examples
272
352
273
353
Examples codified under the [`examples`](https://github.com/terraform-aws-modules/terraform-aws-elasticache/tree/master/examples) are intended to give users references for how to use the module(s) as well as testing/validating changes to the source code of the module. If contributing to the project, please be sure to make any appropriate updates to the relevant examples to allow maintainers to test your changes and to keep the examples up to date for users. Thank you!
@@ -277,6 +357,8 @@ Examples codified under the [`examples`](https://github.com/terraform-aws-module
-[Redis Global Replication Group](https://github.com/terraform-aws-modules/terraform-aws-elasticache/tree/master/examples/redis-global-replication-group)
0 commit comments