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
> ℹ️ Note the confusing terminology around `Cluster Mode`. The `Cluster Mode` setting is a Redis feature that allows data to be sharded among nodes in a cluster, and requires some additional configuration to connect with it correctly. A Redis cluster that does not have `Cluster Mode` enabled is a set of standalone Redis nodes that have a single primary node for reading and writing and replica nodes for reading.
> ℹ️ Note the confusing terminology around `Cluster Mode`. The `Cluster Mode` setting is a Redis feature that allows data to be sharded among nodes in a cluster, and requires some additional configuration to connect with it correctly. A Redis cluster that does not have `Cluster Mode` enabled is a set of standalone Redis nodes that have a single primary node for reading and writing and replica nodes for reading.
If this repo is added as a subtree, then the version of the module should be close to the version shown here:
46
46
47
-
`2.0.0`
47
+
`x.y.z`
48
48
49
49
Note, however that subtrees can be altered as desired within repositories.
50
50
@@ -107,6 +107,7 @@ No modules.
107
107
| <aname="input_dns_ttl"></a> [dns\_ttl](#input\_dns\_ttl)| TTL for DNS records. |`number`|`300`| no |
108
108
| <aname="input_egress_cidr_blocks"></a> [egress\_cidr\_blocks](#input\_egress\_cidr\_blocks)| List of CIDR blocks to assign to the egress rule of the security group. If null, `egress_security_group_ids` must be used. |`list(string)`| <pre>[<br> "10.0.0.0/8"<br>]</pre> | no |
109
109
| <aname="input_egress_source_sg_id"></a> [egress\_source\_sg\_id](#input\_egress\_source\_sg\_id)| List of security group ID to assign to the egress rule of the security group. If null, `egress_cidr_blocks` must be used. |`string`|`null`| no |
110
+
| <aname="input_engine"></a> [engine](#input\_engine)| The engine to use ('valkey' or 'redis') |`string`|`"redis"`| no |
110
111
| <aname="input_engine_version"></a> [engine\_version](#input\_engine\_version)| Version number of the cache engine to be used. If not set, defaults to the latest version. See Describe Cache Engine Versions in the AWS Documentation for supported versions. When engine is redis and the version is 6 or higher, the major and minor version can be set, e.g., 6.2, or the minor version can be unspecified which will use the latest version at creation time, e.g., 6.x. Otherwise, specify the full version desired, e.g., 5.0.6. |`string`|`null`| no |
111
112
| <aname="input_final_snapshot_identifier"></a> [final\_snapshot\_identifier](#input\_final\_snapshot\_identifier)| Name of your final cluster snapshot. If omitted, no final snapshot will be made. |`string`|`null`| no |
112
113
| <aname="input_global_replication_group_id"></a> [global\_replication\_group\_id](#input\_global\_replication\_group\_id)| The ID of the global replication group to which this replication group should belong. If this parameter is specified, the replication group is added to the specified global replication group as a secondary replication group; otherwise, the replication group is not part of any global replication group. If global\_replication\_group\_id is set, the num\_node\_groups parameter cannot be set. |`string`|`null`| no |
error_message="Engine must be 'redis' or 'valkey'"
32
+
}
33
+
}
34
+
25
35
variable"engine_version" {
26
36
description="Version number of the cache engine to be used. If not set, defaults to the latest version. See Describe Cache Engine Versions in the AWS Documentation for supported versions. When engine is redis and the version is 6 or higher, the major and minor version can be set, e.g., 6.2, or the minor version can be unspecified which will use the latest version at creation time, e.g., 6.x. Otherwise, specify the full version desired, e.g., 5.0.6."
0 commit comments