diff --git a/README.md b/README.md index f8b6dbb..f4810d5 100644 --- a/README.md +++ b/README.md @@ -174,8 +174,8 @@ Please refer to examples directory [link](examples) for references. | [cache\_nodes](#input\_cache\_nodes) | The initial number of cache nodes that the cache cluster will have. For Redis, this value must be 1. For Memcache, this value must be between 1 and 20. | `number` | `1` | no | | [cluster\_id](#input\_cluster\_id) | Group identifier. ElastiCache converts this name to lowercase | `string` | `null` | no | | [cluster\_mode\_enabled](#input\_cluster\_mode\_enabled) | Flag to enable/disable creation of a native redis cluster. `automatic_failover_enabled` must be set to `true`. Only 1 `cluster_mode` block is allowed | `bool` | `false` | no | -| [deploy\_redis](#input\_deploy\_redis) | feature flag, true or false | `bool` | `true` | no | -| [deploy\_redis\_parameter\_group](#input\_deploy\_redis\_parameter\_group) | feature flag, true or false | `bool` | `true` | no | +| [deploy\_redis](#input\_deploy\_redis) | Feature flag, true or false | `bool` | `true` | no | +| [deploy\_redis\_parameter\_group](#input\_deploy\_redis\_parameter\_group) | Feature flag, true or false | `bool` | `true` | no | | [engine](#input\_engine) | Name of the cache engine to be used for this cache cluster. Valid values for this parameter are memcached or redis. | `string` | `"redis"` | no | | [engine\_version](#input\_engine\_version) | Version of engine | `string` | `"5.0.6"` | no | | [maintenance\_window](#input\_maintenance\_window) | Specifies the weekly time range for when maintenance on the cache cluster is performed. | `string` | `"mon:10:30-mon:11:30"` | no | diff --git a/examples/variables.tf b/examples/variables.tf index ea0008b..f1bb52c 100644 --- a/examples/variables.tf +++ b/examples/variables.tf @@ -13,3 +13,4 @@ variable "region" { default = "us-west-2" type = string } + diff --git a/variables.tf b/variables.tf index 1b476de..a0a8498 100644 --- a/variables.tf +++ b/variables.tf @@ -87,7 +87,7 @@ variable "az_mode" { } variable "deploy_redis" { - description = "feature flag, true or false" + description = "Feature flag, true or false" default = true type = bool } @@ -99,7 +99,7 @@ variable "availability_zone" { } variable "deploy_redis_parameter_group" { - description = "feature flag, true or false" + description = "Feature flag, true or false" default = true type = bool }