This repository has been archived by the owner on Nov 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
vss-extension.json
112 lines (111 loc) · 3.79 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
{
"manifestVersion": 1,
"id": "terraform-pipelines-extension-dev",
"name": "Terraform",
"version": "0.0.1",
"publisher": "hashicorp",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Task for running Terraform on Azure, AWS, GCP, and Terraform Cloud/Enterprise",
"categories": [
"Azure Pipelines"
],
"Tags": [
"Vault",
"HashiCorp",
"Secrets",
"Release",
"DevOps"
],
"icons": {
"default": "images/icon.png",
"large": "images/icon.png"
},
"files": [
{
"path": "Tasks/TerraformInstaller"
},
{
"path": "Tasks/Terraform"
},
{
"path": "Tasks/TerraformEnterprise"
}
],
"contributions": [
{
"id": "9b9f2e72-30c3-432b-a835-dd2b1160f3b5",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/TerraformInstaller"
}
},
{
"id": "653507a3-d921-47dc-8fed-c5649d8e9e0e",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/Terraform"
}
},
{
"id": "506f3bf4-69c9-4812-a879-ccfc035f174c",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/TerraformEnterprise"
}
},
{
"id": "terraform-cloud-endpoint-type",
"description": "Credentials for tasks invoking Terraform Cloud and Enterprise",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "terraformServiceEndpoint",
"displayName": "Terraform Cloud and Enterprise",
"authenticationSchemes": [
{
"id": "endpoint-auth-scheme-token",
"name": "token",
"displayName": "i18n:Access Token",
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"description": "i18n:Token based endpoint authentication scheme",
"inputDescriptors": [
{
"id": "apitoken",
"name": "i18n:Token",
"description": "i18n:Token to use when accessing Terraform cloud and Enterprise",
"inputMode": "textbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string",
"maxLength": 300
}
}
]
}
],
"url": {
"displayName": "i18n:Terraform Instance URL",
"required": true,
"value": "https://app.terraform.io",
"helpText": "i18n:Client connection endpoint for the Terraform Cloud or Enterprise instance. Prefix the value with \"https://\"."
}
}
}
]
}