Skip to content

Commit

Permalink
fix(): correctly set bind DN in LDAPAuthEngineConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
yann-soubeyrand committed Jan 22, 2025
1 parent 68c6a1c commit 2ce5cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/v1alpha1/ldapauthengineconfig_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ func (i *LDAPConfig) toMap() map[string]interface{} {
payload["certificate"] = i.retrievedCertificate
payload["client_tls_cert"] = i.retrievedClientTLSCert
payload["client_tls_key"] = i.retrievedClientTLSKey
payload["binddn"] = i.BindDN
payload["binddn"] = i.retrievedUsername
payload["bindpass"] = i.retrievedPassword
payload["userdn"] = i.UserDN
payload["userattr"] = i.UserAttr
Expand Down

0 comments on commit 2ce5cc7

Please sign in to comment.