diff --git a/README.md b/README.md index fa8acf0..1e60585 100644 --- a/README.md +++ b/README.md @@ -233,10 +233,10 @@ Review the [complete example](examples/complete) or [serverless example](example | [elasticache\_subnet\_group\_name](#input\_elasticache\_subnet\_group\_name) | Subnet group name for the ElastiCache instance | `string` | `""` | no | | [enabled](#input\_enabled) | Set to false to prevent the module from creating any resources | `bool` | `null` | no | | [engine](#input\_engine) | Name of the cache engine | `string` | `"redis"` | no | -| [engine\_version](#input\_engine\_version) | Version number of the cache engine | `string` | `"4.0.10"` | no | +| [engine\_version](#input\_engine\_version) | Version number of the cache engine | `string` | `"7.1"` | no | | [environment](#input\_environment) | ID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT' | `string` | `null` | no | | [existing\_security\_groups](#input\_existing\_security\_groups) | DEPRECATED: Use `associated_security_group_ids` instead.
Historical description: List of existing Security Group IDs to place the cluster into.
Set `use_existing_security_groups` to `true` to enable using `existing_security_groups` as Security Groups for the cluster. | `list(string)` | `[]` | no | -| [family](#input\_family) | The family of the ElastiCache parameter group | `string` | `"redis4.0"` | no | +| [family](#input\_family) | The family of the ElastiCache parameter group | `string` | `"redis7"` | no | | [final\_snapshot\_identifier](#input\_final\_snapshot\_identifier) | The name of your final node group (shard) snapshot. ElastiCache creates the snapshot from the primary node in the cluster. If omitted, no final snapshot will be made. | `string` | `null` | no | | [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 | | [id\_length\_limit](#input\_id\_length\_limit) | Limit `id` to this many characters (minimum 6).
Set to `0` for unlimited length.
Set to `null` for keep the existing setting, which defaults to `0`.
Does not affect `id_full`. | `number` | `null` | no | @@ -361,7 +361,7 @@ Check out these related projects. > - **Customer Workshops.** Engage with our team in weekly workshops, gaining insights and strategies to continuously improve and innovate. > > Request Quote -> +> ## ✨ Contributing @@ -404,15 +404,15 @@ Setup dependencies: To run tests: -- Run all tests: +- Run all tests: ```sh atmos test run ``` -- Clean up test artifacts: +- Clean up test artifacts: ```sh atmos test clean ``` -- Explore additional test options: +- Explore additional test options: ```sh atmos test --help ``` diff --git a/variables.tf b/variables.tf index 783db4f..b3273d2 100644 --- a/variables.tf +++ b/variables.tf @@ -47,7 +47,7 @@ variable "instance_type" { variable "family" { type = string - default = "redis4.0" + default = "redis7" description = "The family of the ElastiCache parameter group" } @@ -68,7 +68,7 @@ variable "engine" { variable "engine_version" { type = string - default = "4.0.10" + default = "7.1" description = "Version number of the cache engine" }