forked from StackStorm-Exchange/stackstorm-netbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.schema.yaml
More file actions
37 lines (31 loc) · 809 Bytes
/
config.schema.yaml
File metadata and controls
37 lines (31 loc) · 809 Bytes
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
---
hostname:
description: "Hostname for the NetBox server"
type: "string"
required: true
api_token:
description: "API Token to use against the API"
type: "string"
required: true
secret: true
use_https:
description: "Use HTTPS when contacting the API"
type: "boolean"
required: true
ssl_verify:
description: "Verify ssl/tls protocol certs when contacting the API."
type: "boolean"
required: true
sensor_address:
description: "Host address to run the Webhook sensor on."
type: "string"
default: "0.0.0.0"
sensor_port:
description: "Port to run the Webhook sensor on."
type: "integer"
default: 6000
sensor_secret:
description: "When provided, will force request signature verification using the provided secret value."
type: "string"
default: ""
secret: true