-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.yaml
40 lines (40 loc) · 1.04 KB
/
config.schema.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
profiles:
description: "A list of available ldap servers"
type: "array"
items:
required: true
type: "object"
properties:
name:
description: "Profile name"
type: "string"
secret: false
required: true
url:
description: "LDAP URL."
type: "string"
secret: false
required: true
use_tls:
description: "Enable TLS when connecting to ldap server."
type: "boolean"
secret: false
required: true
bind_dn:
description: "Bind using Distinguished Name."
type: "string"
secret: false
required: true
bind_pw:
description: "Distinguished Name password."
type: "string"
secret: true
required: true
available_profiles:
description: "The list of available profiles to be presented in the WebUI's dropdown list"
type: "array"
items:
type: "string"
secret: false
required: true