-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathvss-extension.json
95 lines (94 loc) · 2.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
{
"manifestVersion": 1,
"version": "0.4.14",
"publisher": "JasonBJohnson",
"targets": [{
"id": "Microsoft.VisualStudio.Services"
}],
"description": "Tasks to install and execute terraform with Azure Pipelines for Azure and AWS.",
"categories": [
"Azure Pipelines"
],
"icons": {
"default": "vss-extension-icon.png"
},
"files": [
{ "path": "tasks/terraform-cli/", "packagePath": "TerraformCLI" },
{ "path": "tasks/terraform-installer/", "packagePath": "TerraformInstaller" },
{ "path": "views/terraform-plan/", "addressable": true}
],
"repository" : {
"type" : "git",
"uri" : "https://github.com/jason-johnson/azure-pipelines-tasks-terraform"
},
"content": {
"details": {
"path": "overview.md"
}
},
"screenshots": [
{
"path": "screenshots/overview-tfcli-azure-sub.png"
},
{
"path": "screenshots/overview-tfcli-backend-azurerm.png"
},
{
"path": "screenshots/overview-tfinstall-task-fields.png"
},
{
"path": "screenshots/overview-tfcli-secure-vars.jpg"
},
{
"path": "screenshots/overview-tfcli-ensure-backend.png"
},
{
"path": "screenshots/overview-tfplan-view-no-plans.jpg"
},
{
"path": "screenshots/overview-tfplan-view.jpg"
}
],
"links": {
"support": {
"uri": "https://github.com/jason-johnson/azure-pipelines-tasks-terraform/issues"
},
"license": {
"uri": "https://github.com/jason-johnson/azure-pipelines-tasks-terraform/blob/main/LICENSE"
}
},
"tags" : [
"terraform", "azurerm", "azure", "aws", "infrastructure as code", "iac", "cloud", "deploy"
],
"scopes": [
"vso.build"
],
"contributions": [
{
"id": "azure-pipelines-tasks-terraform-cli",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "TerraformCLI",
"supportsTasks": [
"51355d76-dd54-4754-919d-bba27fdf59e4"
]
}
},
{
"id": "azure-pipelines-tasks-terraform-installer",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "TerraformInstaller",
"supportsTasks": [
"2b4600b9-5cd9-4e3b-9c8b-553c8e58383a"
]
}
}
]
}