Skip to content

Commit

Permalink
[PLAT-15197] Add ssl flag in LDAP universe sync API
Browse files Browse the repository at this point in the history
Summary: Add defaults for sslLdapFlag

Test Plan: Manually tested LDAP DB sync API for ysql/ycql

Reviewers: agarg, asharma

Reviewed By: agarg

Subscribers: yugaware

Differential Revision: https://phorge.dev.yugabyte.com/D39718
  • Loading branch information
Vars-07 committed Nov 7, 2024
1 parent 33f2f5e commit ee0a10e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ public enum TargetApi {
private String ldapGroupfield;

@ApiModelProperty(value = "Use LDAP TLS")
private Boolean useLdapTls;
private Boolean useLdapTls = false;

@ApiModelProperty(value = "Use LDAP SSL")
private Boolean useLdapSsl;
private Boolean useLdapSsl = false;

@ApiModelProperty(value = "Allow the API to create the LDAP groups as DB superusers")
private Boolean createGroups = false;
Expand Down

0 comments on commit ee0a10e

Please sign in to comment.