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
* feat: introducing valkey elasticache
* feat: add argument to control auth_token update strategy
* add new outputs for valkey, update existing output names and their descriptions
* tf-check: fix unsupported attribute redis_endpoint
* update tf-check github-actions for valkey example
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.
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."
100
+
}
101
+
96
102
variable"auth_token" {
97
103
type=string
98
104
default=null
99
105
description="The password used to access a password protected server. Can be specified only if transit_encryption_enabled = true. Find auto generated auth_token in terraform.tfstate or in AWS SSM Parameter Store."
100
106
}
101
107
108
+
variable"auth_token_update_strategy" {
109
+
type=string
110
+
default=null
111
+
description="(Optional) Strategy to use when updating the auth_token. Valid values are SET, ROTATE, and DELETE. Required if auth_token is set. Defaults to ROTATE"
0 commit comments