forked from StackStorm-Exchange/stackstorm-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.yaml
63 lines (63 loc) · 1.46 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
---
hostname:
description: "MQTT Broker to connect to"
type: "string"
required: true
secret: false
subscribe:
description: "List of MQTT topics to subscribe to"
type: "array"
items:
type: "string"
required: true
port:
description: "MQTT port to connect to. Default 1883"
type: "integer"
required: false
secret: false
protocol:
description: "MQTT protocol version. Default MQTTv311"
type: "string"
required: false
secret: false
client_id:
description: "Client ID to register on MQTT broker"
type: "string"
required: false
secret: false
userdata:
description: "Custom userdata to include with each MQTT message payload"
type: "string"
required: false
secret: false
username:
description: "Username to connect to MQTT Broker"
type: "string"
required: false
secret: false
password:
description: "Password to connect to MQTT Broker"
type: "string"
required: false
secret: true
ssl:
description: "Enable SSL support. Default: False"
type: "boolean"
required: false
secret: false
default: false
ssl_cacert:
description: "Path to SSL CA Certificate"
type: "string"
required: false
secret: false
ssl_cert:
description: "Path to SSL Certificate"
type: "string"
required: false
secret: false
ssl_key:
description: "Path to SSL Key"
type: "string"
required: false
secret: false