You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make aws-redis-node match internal lib, upgrade default (#146)
Make aws-redis-node match internal lib, upgrade defaultPorting arguments and defaults from CZI internal module library (with the intent of deleting the internal lib module in favor of this one), and upgrading default Redis engine from 5.0.3 to 5.0.5
Copy file name to clipboardexpand all lines: aws-redis-node/variables.tf
+4-3
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ variable "subnets" {
21
21
variable"availability_zone" {
22
22
type="string"
23
23
description="Availability zone in which this instance should run."
24
+
default=null
24
25
}
25
26
26
27
variable"ingress_security_group_ids" {
@@ -42,17 +43,17 @@ variable "port" {
42
43
variable"instance_type" {
43
44
type="string"
44
45
description="The type of instance to run. See [supported node types](https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html)"
45
-
default="cache.m4.large"
46
+
default="cache.m5.large"
46
47
}
47
48
48
49
variable"parameter_group_name" {
49
-
default="default.redis3.2"
50
+
default="default.redis5.0"
50
51
}
51
52
52
53
variable"engine_version" {
53
54
type="string"
54
55
description="The version of Redis to run. See [supported versions](https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/supported-engine-versions.html)"
0 commit comments