29 lines
479 B
YAML
29 lines
479 B
YAML
|
---
|
||
|
ldap_connection:
|
||
|
host: localhost
|
||
|
port: 1389
|
||
|
|
||
|
ldap_users:
|
||
|
base: dc=example,dc=com
|
||
|
filter: (&(cn=*)(sAMAccountName=*))
|
||
|
name_attribute: sAMAccountName
|
||
|
|
||
|
ldap_groups:
|
||
|
base: dc=example,dc=com
|
||
|
filter: (member=*)
|
||
|
name_attribute: cn
|
||
|
member_attribute: member
|
||
|
|
||
|
pg_connection:
|
||
|
host: localhost
|
||
|
dbname: postgres
|
||
|
|
||
|
pg_users:
|
||
|
filter: rolcanlogin AND NOT rolsuper
|
||
|
create_options: LOGIN
|
||
|
|
||
|
pg_groups:
|
||
|
filter: NOT rolcanlogin
|
||
|
create_options: NOLOGIN
|
||
|
grant_options:
|