-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconfig.schema.yaml
69 lines (69 loc) · 1.98 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
68
69
---
default_profile:
description: "The default profile to use in an action when none is given."
type: string
required: true
profiles:
description: "Profiles definitions"
type: "array"
required: true
items:
type: "object"
required: true
additionalProperties: false
properties:
name:
description: "Name of the profile."
type: "string"
required: true
url:
description: "URL for the Vault server"
type: "string"
secret: false
required: true
verify:
description: "Verify the TLS certificate for HTTPS requests. Default false (this option is ignored if ca_cert_path is supplied)."
type: "boolean"
required: false
default: false
ca_cert_path:
description: "CA Certificate path. Defaults to empty string. When path is provided, TLS certificates are verified."
type: "string"
required: false
default: ""
client_cert_path:
description: "Client side certificates for HTTPS request"
type: "string"
required: false
client_key_path:
description: "Client private key for HTTPS request"
type: "string"
required: false
auth_method:
description: "Authentication method"
type: "string"
default: "token"
enum:
- approle
- token
required: false
token:
description: "Authentication token (method=token)"
type: "string"
secret: true
required: false
role_id:
description: "Authentication approle role-id (method=approle)"
type: "string"
secret: true
required: false
secret_id:
description: "Authentication approle secret-id (method=approle)"
type: "string"
secret: true
required: false
mount_point:
description: "Authentication mount point (method=approle)"
type: "string"
secret: false
required: false