Skip to content

Commit 08125c3

Browse files
authored
Merge pull request #4 from pbs/chore/upgrading_default_parameter_group_version
Upgrading `parameter_group_version` to 7
2 parents 04d665f + cae8aea commit 08125c3

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ tflint 0.41.0
55
github-cli 2.17.0
66
fd 8.4.0
77
terraform-docs 0.16.0
8+
python 3.10.9

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Use this URL for the source of the module. See the usage examples below for more details.
88

99
```hcl
10-
github.com/pbs/terraform-aws-elasticache-redis-standalone-module?ref=0.0.3
10+
github.com/pbs/terraform-aws-elasticache-redis-standalone-module?ref=x.y.z
1111
```
1212

1313
### Alternative Installation Methods
@@ -28,7 +28,7 @@ Integrate this module like so:
2828

2929
```hcl
3030
module "elasticache-redis-standalone" {
31-
source = "github.com/pbs/terraform-aws-elasticache-redis-standalone-module?ref=0.0.3"
31+
source = "github.com/pbs/terraform-aws-elasticache-redis-standalone-module?ref=x.y.z"
3232
3333
# Tagging Parameters
3434
organization = var.organization
@@ -44,7 +44,7 @@ module "elasticache-redis-standalone" {
4444

4545
If this repo is added as a subtree, then the version of the module should be close to the version shown here:
4646

47-
`0.0.3`
47+
`x.y.z`
4848

4949
Note, however that subtrees can be altered as desired within repositories.
5050

@@ -118,7 +118,7 @@ No modules.
118118
| <a name="input_nodes"></a> [nodes](#input\_nodes) | Number of nodes (primary and replicas) this replication group will have. If Multi-AZ is enabled, the value of this parameter must be at least 2. Updates will occur before other modifications. Conflicts with num\_node\_groups, the deprecatednumber\_cache\_clusters, or the deprecated cluster\_mode. | `number` | `2` | no |
119119
| <a name="input_notification_topic_arn"></a> [notification\_topic\_arn](#input\_notification\_topic\_arn) | ARN of an SNS topic to send ElastiCache notifications to. Example: arn:aws:sns:us-east-1:012345678999:my\_sns\_topic. | `string` | `null` | no |
120120
| <a name="input_parameter_group_name"></a> [parameter\_group\_name](#input\_parameter\_group\_name) | Name of the parameter group to be created. If null, one will be created using the name of the cluster. | `string` | `null` | no |
121-
| <a name="input_parameter_group_version"></a> [parameter\_group\_version](#input\_parameter\_group\_version) | The major + minor version being used for the application when creating a parameter group. | `string` | `"6.x"` | no |
121+
| <a name="input_parameter_group_version"></a> [parameter\_group\_version](#input\_parameter\_group\_version) | The major + minor version being used for the application when creating a parameter group. | `string` | `"7"` | no |
122122
| <a name="input_parameters"></a> [parameters](#input\_parameters) | Additional parameters that will be added to parameter group. | `list(map(any))` | `[]` | no |
123123
| <a name="input_port"></a> [port](#input\_port) | The port number on which each of the cache nodes will accept connections. Cannot be provided with replication\_group\_id. Changing this value will re-create the resource. | `number` | `6379` | no |
124124
| <a name="input_preferred_cache_cluster_azs"></a> [preferred\_cache\_cluster\_azs](#input\_preferred\_cache\_cluster\_azs) | List of availability zones in which to create cluster. | `list(string)` | `null` | no |

optional.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ variable "global_replication_group_id" {
210210

211211
variable "parameter_group_version" {
212212
description = "The major + minor version being used for the application when creating a parameter group."
213-
default = "6.x"
213+
default = "7"
214214
type = string
215215
}
216216

0 commit comments

Comments
 (0)