-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathvss-extension.json
77 lines (77 loc) · 2.2 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
{
"manifestVersion": 1,
"id": "azure-pipelines-tasks-terraform",
"name": "Terraform Build & Release Tasks",
"version": "0.1.6",
"publisher": "charleszipp",
"targets": [{
"id": "Microsoft.VisualStudio.Services"
}],
"description": "Tasks to execute terraform commands during Azure DevOps Build & Release pipelines",
"categories": [
"Build and release"
],
"icons": {
"default": "vss-extension-icon.png"
},
"files": [
{ "path": "TerraformCLI/.dist", "packagePath": "TerraformCLI" },
{ "path": "TerraformInstaller/.dist", "packagePath": "TerraformInstaller" }
],
"repository" : {
"type" : "git",
"uri" : "https://github.com/charleszipp/azure-pipelines-tasks-terraform"
},
"content": {
"details": {
"path": "overview.md"
}
},
"screenshots": [
{
"path": "screenshots/overview-tfcli-azure-sub.jpg"
},
{
"path": "screenshots/overview-tfcli-backend-azurerm.jpg"
},
{
"path": "screenshots/overview-tfinstall-task-fields.jpg"
}
],
"links": {
"support": {
"uri": "https://github.com/charleszipp/azure-pipelines-tasks-terraform/issues"
},
"license": {
"uri": "https://github.com/charleszipp/azure-pipelines-tasks-terraform/blob/master/LICENSE"
}
},
"galleryFlags": [
"Public",
"Preview"
],
"tags" : [
"terraform", "azurerm", "azure", "infrastructure as code", "iac", "cloud", "deploy"
],
"contributions": [{
"id": "azure-pipelines-tasks-terraform-cli",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "TerraformCLI"
}
},
{
"id": "azure-pipelines-tasks-terraform-installer",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "TerraformInstaller"
}
}
]
}