Update variable.environment.template.yaml.

This commit is contained in:
Marcel Aldecoa 2021-07-08 10:56:21 -03:00
Родитель 5628cbfb98
Коммит 8e298e04f3
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -7,9 +7,12 @@ variables:
${{ if eq(variables['Build.SourceBranchName'], 'main') }}:
environment: prod
azureServiceConnection: spn-iac-prod
branch: 'refs/heads/main'
${{ if eq(variables['Build.SourceBranchName'], 'qa') }}:
environment: qa
azureServiceConnection: spn-iac-qa
branch: 'refs/heads/qa'
${{ if and(ne(variables['Build.SourceBranchName'], 'main'), ne(variables['Build.SourceBranchName'], 'qa')) }}:
environment: dev
azureServiceConnection: spn-iac-dev
branch: 'refs/heads/develop'