-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.schema.yaml
64 lines (62 loc) · 1.57 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
splunk_instances:
type: "object"
required: true
patternProperties:
"^\\w+":
"$ref": "#/properties/splunk_instance"
additionalProperties: false
splunk_instance:
type: "object"
properties:
host:
description: "Splunk server"
type: "string"
secret: false
required: true
port:
description: "Splunk port (default: 8089)"
type: "integer"
secret: false
required: true
default: 8089
username:
description: "Splunk username"
type: "string"
secret: false
required: false
password:
description: "Splunk password"
type: "string"
secret: true
required: false
splunkToken:
description: "HEC URL endpoint (default: /services/collector)"
type: "string"
secret: true
required: false
scheme:
description: "Protocol used for Splunk API - http or https (default: https)"
type: "string"
secret: false
required: false
default: "https"
verify:
description: "Check the validity of the SSL certificate returned by Splunk (default: true)"
type: "boolean"
secret: false
required: false
default: true
hec_port:
description: "Port to send HEC data too (default: 8088)"
type: "integer"
secret: false
required: false
default: "8088"
hec_endpoint:
description: "HEC URL endpoint (default: /services/collector)"
type: "string"
secret: false
required: false
default: "/services/collector"
additionalProperties: false