Skip to content

Commit

Permalink
fix: update ldap provider json schema
Browse files Browse the repository at this point in the history
Signed-off-by: Jason C. Nucciarone <[email protected]>
  • Loading branch information
NucciTheBoss committed Feb 3, 2025
1 parent 12f6118 commit 5de5adb
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions docs/json_schemas/ldap/v0/provider.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,19 @@
},
"LdapProviderData": {
"properties": {
"url": {
"description": "The LDAP URL",
"example": "ldap://ldap.canonical.com:3893",
"format": "uri",
"minLength": 1,
"title": "LDAP URL",
"type": "string"
"urls": {
"description": "List of LDAP URLs",
"example": [
"ldap://ldap.canonical.com:3893",
"ldap://ldap.ubuntu.com:3893"
],
"items": {
"format": "uri",
"minLength": 1,
"type": "string"
},
"title": "LDAP URLs",
"type": "array"
},
"base_dn": {
"description": "The base entry as the starting point for LDAP search operation",
Expand Down Expand Up @@ -47,7 +53,7 @@
}
},
"required": [
"url",
"urls",
"base_dn",
"bind_dn",
"bind_password_secret",
Expand Down

0 comments on commit 5de5adb

Please sign in to comment.