Skip to content

Commit 7b27cb1

Browse files
authored
Nulling redis certificate variables as default (#359)
1 parent ad65113 commit 7b27cb1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,19 +125,19 @@ variable "enable_redis_mtls" {
125125
variable "redis_client_key_secret_id" {
126126
type = string
127127
description = "The secrets manager secret ID of the Base64 & PEM encoded private key for redis."
128-
default = false
128+
default = null
129129
}
130130

131131
variable "redis_client_certificate_secret_id" {
132132
type = string
133133
description = "The secrets manager secret ID of the Base64 & PEM encoded certificate for redis."
134-
default = false
134+
default = null
135135
}
136136

137137
variable "redis_ca_certificate_secret_id" {
138138
type = string
139139
description = "The secrets manager secret ID of the Base64 & PEM encoded certificate for redis."
140-
default = false
140+
default = null
141141
}
142142

143143
variable "redis_cache_size" {

0 commit comments

Comments
 (0)