Skip to content

Commit

Permalink
Merge branch 'main' into update_provision_tf_test
Browse files Browse the repository at this point in the history
  • Loading branch information
HadwaAbdelhalem authored May 15, 2024
2 parents 970904f + 9ad95f1 commit 67b43da
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"pipelines": [
{
"id": "__PIPELINE_ID__",
"id": __PIPELINE_ID__,
"authorized": true
}
]
Expand Down
11 changes: 7 additions & 4 deletions scripts/install/providers/azdo/templates/pipeline-create.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,23 @@
"pollingJobId": null,
"pollingInterval": 0,
"pathFilters": [],
"branchFilters": ["+refs/heads/main"],
"branchFilters": [
"+refs/heads/main"
],
"defaultSettingsSourceType": 2,
"isSettingsSourceOptionSupported": true,
"settingsSourceType": 2,
"triggerType": 2
}
],
"variables": ["__ADO_PIPELINE_VARIABLES__"],
"variables": { __ADO_PIPELINE_VARIABLES__
},
"queue": {
"id": "__ADO_POOL_ID__",
"id": __ADO_POOL_ID__,
"name": "__ADO_POOL_NAME__",
"url": "__AZDO_ORG_URI__/_apis/build/Queues/__ADO_POOL_ID__",
"pool": {
"id": "__ADO_POOL_ID__",
"id": __ADO_POOL_ID__,
"name": "__ADO_POOL_NAME__",
"isHosted": true
}
Expand Down
10 changes: 4 additions & 6 deletions scripts/install/providers/azdo/templates/pipeline-variable.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"__PIPELINE_VAR_NAME__": {
"value": "__PIPELINE_VAR_VALUE__",
"isSecret": "__PIPELINE_VAR_IS_SECRET__",
"allowOverride": "__PIPELINE_ALLOW_OVERRIDE__"
}
"__PIPELINE_VAR_NAME__": {
"value": "__PIPELINE_VAR_VALUE__",
"isSecret": __PIPELINE_VAR_IS_SECRET__,
"allowOverride": __PIPELINE_ALLOW_OVERRIDE__
}

0 comments on commit 67b43da

Please sign in to comment.