1
votes

I'm using a variable group to define my proxy variables. As of now I'm linking that variable group to each pipeline I have. But the goal is to use that variable group in reusable task groups as we have 100s of pipelines using a same task group and I don't want to do it manually for each and every pipeline to link that variable group.

1

1 Answers

0
votes

I used vso task.set variable to define the variables mentioned mentioned in Var groups in a inline powershell task which works fine.

Write-Host "##vso[task.setvariable variable=HTTP_PROXY;]http://yyyy.com:8080"

Write-Host "##vso[task.setvariable variable=NO_PROXY;].google.com"