Skip to content

Commit

Permalink
add an example ldap scim bridge configuration. (#580)
Browse files Browse the repository at this point in the history
  • Loading branch information
julialongtin authored Aug 26, 2022
1 parent 984d129 commit 55741b3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions values/ldap-scim-bridge/values-prod.example.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# NOTE: you will need an LDAP SCIM bridge deployment for each team!
# by default, run every 5 minutes.
schedule: "*/5 * * * * *"
config:
logLevel: "Debug" # one of Trace,Debug,Info,Warn,Error,Fatal; 'Fatal' is least noisy, 'Trace' is most.
ldapSource:
tls: true
host: "ldap-server.example.com"
port: 636
dn: "CN=Admin,DC=example,DC=com"
password: "secret password here"
search:
base: "DC=example,DC=com"
objectClass: "person"
memberOf "CN=people,OU=engineering,DC=example,DC=com"
codec: "utf8"
# deleteOnAttribute: # optional, related to delete-from-directory.
# key: "deleted"
# value: "true"
# deleteFromDirectory: # optional; ok to use together with delete-on-attribute if you use both.
# base: "ou=DeletedPeople,DC=example,DC=com"
# objectClass: "account"
scimTarget:
tls: false
host: "spar"
port: 8080
path: "/scim/v2"
token: "Bearer BEARERTOKENHERE"
mapping:
displayName: "displayName"
userName: "mailNickname"
externalId: "mail"
email: "mail"

0 comments on commit 55741b3

Please sign in to comment.