forked from StackStorm-Exchange/stackstorm-jira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.yaml
66 lines (66 loc) · 1.64 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
---
url:
description: "URL of the JIRA instance (e.g. ``https://myproject.atlassian.net``)"
type: "string"
secret: false
required: true
verify:
description: "Verify SSL certificate. Set to False to disable verification. Default True"
type: boolean
default: True
auth_method:
description: "Authentication method to use - oauth or basic"
type: "string"
secret: false
required: true
default: "oauth"
enum:
- oauth
- basic
- cookie
username:
description: "Username if using the basic or cookie auth_method"
type: "string"
secret: false
required: false
password:
description: "Password if using the basic or cookie auth_method"
type: "string"
secret: true
required: false
rsa_cert_file:
description: "Path to a private key file, e.g. /home/vagrant/jira.pem"
type: "string"
secret: false
required: false
oauth_token:
description: "OAuth token"
type: "string"
secret: true
required: false
oauth_secret:
description: "OAuth secret"
type: "string"
secret: true
required: false
consumer_key:
description: "Consumer key"
type: "string"
secret: true
required: false
poll_interval:
description: "Polling interval - default 30s"
type: "integer"
secret: false
required: false
default: 30
project:
description: "Project to be used as default for actions that don't require or allow a project"
type: "string"
secret: false
required: true
validate:
description: "If true it will validate your credentials first."
type: boolean
default: false
required: false