We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fdce2f commit d4293abCopy full SHA for d4293ab
1 file changed
k8s/variables.tf
@@ -337,14 +337,14 @@ variable "database_read_replica" {
337
max_idle_conns = optional(number, 50)
338
conn_max_lifetime = optional(number, 0)
339
340
- tls = object({
+ tls = optional(object({
341
enabled = optional(bool, false)
342
config = optional(string, "")
343
server_name = optional(string, "")
344
ca_cert_key = optional(string, "")
345
cert_key = optional(string, "")
346
key_key = optional(string, "")
347
- })
+ }))
348
})
349
description = "Used to configure database_read_replica specific values for use in the Fleet deployment and vuln-processing cron job."
350
}
0 commit comments