Skip to content

Commit

Permalink
Merge pull request #2 from JaydenMaalouf/feat/add-release-support
Browse files Browse the repository at this point in the history
Feat/add release support
  • Loading branch information
JaydenMaalouf authored Mar 8, 2023
2 parents fc056e3 + 1cafea1 commit 41b40d4
Show file tree
Hide file tree
Showing 9 changed files with 6,236 additions and 113 deletions.
10 changes: 10 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"arrowParens": "avoid",
"bracketSpacing": true,
"bracketSameLine": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}
53 changes: 44 additions & 9 deletions azure-devops-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,36 @@
"manifestVersion": 1,
"id": "terraform-output",
"publisher": "JaydenMaalouf",
"version": "1.1.2",
"version": "1.1.19",
"name": "Terraform Output",
"description": "Adds a tab for Terraform Plan outputs",
"galleryFlags": ["Public"],
"galleryFlags": [
"Public"
],
"icons": {
"default": "images/icon.png",
"large": "images/icon.png"
},
"categories": ["Azure Pipelines"],
"tags": ["Terraform", "Output", "Plan", "HTML", "Tab", "DevOps"],
"categories": [
"Azure Pipelines"
],
"tags": [
"Terraform",
"Output",
"Plan",
"HTML",
"Tab",
"DevOps"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"scopes": ["vso.build_execute"],
"scopes": [
"vso.release",
"vso.build_execute"
],
"content": {
"details": {
"path": "OVERVIEW.md"
Expand Down Expand Up @@ -53,22 +67,43 @@
"id": "pipeline-terraform-tab",
"type": "ms.vss-build-web.build-results-tab",
"description": "Embed Terraform Output in Azure Pipelines Build",
"targets": ["ms.vss-build-web.build-results-view"],
"targets": [
"ms.vss-build-web.build-results-view"
],
"properties": {
"name": "Terraform Plan",
"uri": "dist/TerraformTab/tabContent.html",
"registeredObjectId": "registerBuild",
"supportsTasks": ["88279389-1419-4920-8f6c-b16cfccb90d9"],
"supportsTasks": [
"88279389-1419-4920-8f6c-b16cfccb90d9"
],
"dynamic": true
}
},
{
"id": "releases-terraform-tab",
"type": "ms.vss-web.tab",
"description": "Embed Terraform Output in Azure Releases",
"targets": [
"ms.vss-releaseManagement-web.release-environment-editor-tab"
],
"properties": {
"name": "Terraform Plan",
"uri": "dist/TerraformTab/tabContent.html",
"supportsTasks": [
"88279389-1419-4920-8f6c-b16cfccb90d9"
]
}
},
{
"id": "TerraformOutput",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/TerraformOutput"
}
}
]
}
}
Loading

0 comments on commit 41b40d4

Please sign in to comment.