@@ -12,7 +12,6 @@ variable "repository" {
12
12
description = " Terraform current module repo"
13
13
14
14
validation {
15
- # regex(...) fails if it cannot find a match
16
15
condition = can (regex (" ^https://" , var. repository ))
17
16
error_message = " The module-repo value must be a valid Git repo link."
18
17
}
@@ -54,8 +53,6 @@ variable "enable" {
54
53
description = " Enable or disable of elasticache"
55
54
}
56
55
57
- # Module : Replication Group
58
- # Description : Terraform Replication group module variables.
59
56
variable "engine" {
60
57
type = string
61
58
default = " "
@@ -145,12 +142,12 @@ variable "subnet_ids" {
145
142
146
143
variable "subnet_group_description" {
147
144
type = string
148
- default = " Managed by Terraform "
145
+ default = " The Description of the ElastiCache Subnet Group. "
149
146
description = " Description for the cache subnet group. Defaults to `Managed by Terraform`."
150
147
}
151
148
variable "replication_group_description" {
152
149
type = string
153
- default = " Name of either the CloudWatch Logs LogGroup or Kinesis Data Firehose resource ."
150
+ default = " User-created description for the replication group ."
154
151
description = " Name of either the CloudWatch Logs LogGroup or Kinesis Data Firehose resource."
155
152
}
156
153
@@ -278,7 +275,7 @@ variable "kms_key_id" {
278
275
279
276
variable "alias" {
280
277
type = string
281
- default = " alias/rediss "
278
+ default = " alias/redis "
282
279
description = " The display name of the alias. The name must start with the word `alias` followed by a forward slash."
283
280
}
284
281
0 commit comments