From 9789ad070b4ceca1f0ade4013d09542123748282 Mon Sep 17 00:00:00 2001
From: James Elliott <james-d-elliott@users.noreply.github.com>
Date: Fri, 6 Aug 2021 09:28:52 +1000
Subject: [PATCH] fix(configuration): ldap timeout option not recognized as
 valid (#2252)

This is so an unexpected error doesn't occur when someone uses the new ldap timeout key which we missed adding to the list of valid keys in b2a49e1780041943862590984070a2268a87d823.
---
 internal/configuration/validator/const.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/internal/configuration/validator/const.go b/internal/configuration/validator/const.go
index a3bb6140..699697bf 100644
--- a/internal/configuration/validator/const.go
+++ b/internal/configuration/validator/const.go
@@ -244,6 +244,7 @@ var ValidKeys = []string{
 	// LDAP Authentication Backend Keys.
 	"authentication_backend.ldap.implementation",
 	"authentication_backend.ldap.url",
+	"authentication_backend.ldap.timeout",
 	"authentication_backend.ldap.base_dn",
 	"authentication_backend.ldap.username_attribute",
 	"authentication_backend.ldap.additional_users_dn",