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
Copy file name to clipboardExpand all lines: variables.tf
+2-36Lines changed: 2 additions & 36 deletions
Original file line number
Diff line number
Diff line change
@@ -29,12 +29,6 @@ variable "label_order" {
29
29
description="Label order, e.g. `name`,`application`."
30
30
}
31
31
32
-
variable"attributes" {
33
-
type=list(any)
34
-
default=[]
35
-
description="Additional attributes (e.g. `1`)."
36
-
}
37
-
38
32
variable"extra_tags" {
39
33
type=map(string)
40
34
default={}
@@ -59,13 +53,6 @@ variable "engine" {
59
53
description="The name of the cache engine to be used for the clusters in this replication group. e.g. redis."
60
54
}
61
55
62
-
variable"replication_group_id" {
63
-
type=string
64
-
default=""
65
-
description="The replication group identifier This parameter is stored as a lowercase string."
66
-
sensitive=true
67
-
}
68
-
69
56
variable"automatic_failover_enabled" {
70
57
type=bool
71
58
default=true
@@ -92,11 +79,13 @@ variable "node_type" {
92
79
}
93
80
94
81
variable"security_group_names" {
82
+
type=list(string)
95
83
default=null
96
84
description="A list of cache security group names to associate with this replication group."
97
85
}
98
86
99
87
variable"snapshot_arns" {
88
+
type=list(string)
100
89
default=null
101
90
description="A single-element string list containing an Amazon Resource Name (ARN) of a Redis RDB snapshot file stored in Amazon S3."
102
91
}
@@ -192,12 +181,6 @@ variable "auth_token" {
192
181
description="The password used to access a password protected server. Can be specified only if transit_encryption_enabled = true."
193
182
}
194
183
195
-
variable"family" {
196
-
type=string
197
-
default=""
198
-
description="(Required) The family of the ElastiCache parameter group."
199
-
}
200
-
201
184
variable"cluster_replication_enabled" {
202
185
type=bool
203
186
default=false
@@ -224,12 +207,6 @@ variable "az_mode" {
224
207
description="(Memcached only) Specifies whether the nodes in this Memcached node group are created in a single Availability Zone or created across multiple Availability Zones in the cluster's region. Valid values for this parameter are single-az or cross-az, default is single-az. If you want to choose cross-az, num_cache_nodes must be greater than 1."
0 commit comments