-
Notifications
You must be signed in to change notification settings - Fork 13
/
vss-extension.json
128 lines (128 loc) · 4.74 KB
/
vss-extension.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"manifestVersion": 1,
"id": "vault-pipelines-extension-dev",
"name": "Vault",
"version": "0.0.1",
"publisher": "hashicorp",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Task for interfacing with HashiCorp Vault in Azure Pipelines",
"categories": [
"Azure Pipelines"
],
"Tags": [
"Vault",
"HashiCorp",
"Secrets",
"Release",
"DevOps"
],
"icons": {
"default": "images/icon.png",
"large": "images/icon.png"
},
"files": [
{
"path": "Tasks/VaultInstaller"
},
{
"path": "Tasks/Vault"
}
],
"contributions": [
{
"id": "f5016087-a6db-40c4-9f5e-c8aeead16b89",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/VaultInstaller"
}
},
{
"id": "23bc3f85-3d14-49a2-aec3-07e40fa06676",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/Vault"
}
},
{
"id": "vault-enpoint-type",
"description": "Credentials for task invoking HashiCorp Vault",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "vaultServiceEndpoint",
"displayName": "Vault",
"authenticationSchemes": [
{
"id": "endpoint-auth-scheme-token",
"name": "token",
"displayName": "i18n:Vault Token",
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"description": "i18n:Token based endpoint authentication scheme",
"inputDescriptors": [
{
"id": "apitoken",
"name": "i18n:Vault Token",
"description": "i18n:Token to use when accessing vault",
"inputMode": "textbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string",
"maxLength": 300
}
}
]
},
{
"id": "endpoint-auth-scheme-userpass",
"name": "Userpass",
"displayName": "i18n:Username/Password",
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"description": "i18n:Vault username endpoint authentication scheme",
"inputDescriptors": [
{
"id": "username",
"name": "i18n:Username",
"description": "i18n:Vault username",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "password",
"name": "i18n:Password",
"description": "i18n:Vault Password",
"inputMode": "textbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
}
],
"url": {
"displayName": "i18n:Vault URL",
"required": true,
"helpText": "i18n:Client connection endpoint for the Vault instance. Prefix the value with \"https://\"."
}
}
}
]
}