forked from StackStorm-Exchange/stackstorm-ghost2logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.yaml
executable file
·67 lines (67 loc) · 1.73 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
65
66
67
---
username:
description: "Username used to authenticate."
type: "string"
secret: false
required: true
default: "admin"
password:
description: "Password used to authenticate."
type: "string"
secret: true
required: true
default: "admin"
st2_api_key:
description: "ST2 Long Lived API Key."
type: "string"
secret: false
required: true
default: "REPLACE_ME"
syslog_listen_port:
description: "Port for the Syslog sensor to listen on."
type: "string"
secret: false
required: true
default: "514"
sensor_listen_ip:
description: "IP Address that the event sensor will listen on."
type: "string"
secret: false
required: true
default: "0.0.0.0"
sensor_listen_port:
description: "Port that the event sensor will listen on."
type: "string"
secret: false
required: true
default: "12022"
ghost_ip:
description: "IP Address that Ghost2 will listen on."
type: "string"
secret: false
required: true
default: "0.0.0.0"
ghost_port:
description: "Port that Ghost2 will listen on."
type: "string"
secret: false
required: true
default: "12023"
st2url:
description: "The query string for the API Loopback sensor."
type: "string"
secret: false
required: true
default: "http://127.0.0.1:9101/v1/rules/?limit=10&pack=ghost2logger"
web_hook_auth_header_key:
description: "Header key name for the output webhook capability."
type: "string"
secret: false
required: true
default: "Authorization"
web_hook_auth_header_val:
description: "Header value for the output webhook capability."
type: "string"
secret: false
required: true
default: "Basic YWRtaW46YWRtaW4="