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
secret_string ="{ \"auth_token\": \"UseSomethingSecure*1234\"}"# -- The Secret can be changed with any DUMMY_VALUE after `terraform apply`. Terraform will not show any changes for `secret_string` in future plans.
58
58
}
59
59
]
60
60
}
@@ -97,7 +97,8 @@ module "valkey" {
97
97
maintenance_window ="sat:03:30-sat:04:30"
98
98
}
99
99
az_mode="single-az"
100
-
kms_key_id=null# -- AWS Owned KMS Key
100
+
kms_key_id=null# -- AWS Owned KMS Key
101
+
auto_generate_auth_token=false# -- To Provide your own auth_token
Copy file name to clipboardExpand all lines: variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,12 @@ variable "auth_token_enable" {
93
93
description="Flag to specify whether to create auth token (password) protected cluster. Can be specified only if transit_encryption_enabled = true."
94
94
}
95
95
96
+
variable"auto_generate_auth_token" {
97
+
type=bool
98
+
default=true
99
+
description="Whether to automatically generate the authentication token using Terraform. If set to false, you must provide your own token via the 'auth_token' variable."
0 commit comments