diff --git a/elasticache-redis/replication-group/README.md b/elasticache-redis/replication-group/README.md index e548217..383bab3 100644 --- a/elasticache-redis/replication-group/README.md +++ b/elasticache-redis/replication-group/README.md @@ -53,7 +53,7 @@ Provision a Redis cluster using AWS ElastiCache. | [description](#input\_description) | Human-readable description for this replication group | `string` | n/a | yes | | [enable\_kms](#input\_enable\_kms) | Enable KMS encryption | `bool` | `true` | no | | [engine](#input\_engine) | Elasticache database engine; defaults to Redis | `string` | `"redis"` | no | -| [engine\_version](#input\_engine\_version) | Version for RDS database engine | `string` | n/a | yes | +| [engine\_version](#input\_engine\_version) | Version for RDS database engine | `string` | `"7.1"` | no | | [global\_replication\_group\_id](#input\_global\_replication\_group\_id) | The ID of the global replication group to which this replication group should belong. | `string` | `null` | no | | [initial\_auth\_token](#input\_initial\_auth\_token) | Override the initial auth token | `string` | `null` | no | | [kms\_key\_id](#input\_kms\_key\_id) | KMS key to encrypt data at rest | `string` | `null` | no | diff --git a/elasticache-redis/replication-group/variables.tf b/elasticache-redis/replication-group/variables.tf index 30496c9..2c61f44 100644 --- a/elasticache-redis/replication-group/variables.tf +++ b/elasticache-redis/replication-group/variables.tf @@ -42,6 +42,7 @@ variable "engine" { variable "engine_version" { type = string description = "Version for RDS database engine" + default = "7.1" } variable "global_replication_group_id" {