File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7272 --parameters adoOrganizationUrl="${{ parameters.adoOrganizationUrl }}" `
7373 --parameters adoProjectName="${{ parameters.adoProjectName }}" `
7474 --parameters adoRepositoryName="${{ parameters.adoRepositoryName }}" `
75- --parameters azureTenantId ="${{ parameters.azureTenantId }}" `
76- --parameters azureClientId ="${{ parameters.azureClientId }}" `
77- --parameters azureClientSecret ="${{ parameters.azureClientSecret }}" `
75+ --parameters entraIdTenantId ="${{ parameters.azureTenantId }}" `
76+ --parameters entraIdClientId ="${{ parameters.azureClientId }}" `
77+ --parameters entraIdClientSecret ="${{ parameters.azureClientSecret }}" `
7878 --parameters enableEntraIdAuth=${{ parameters.enableEntraIdAuth }} `
7979 --parameters disablePasswordAuth=${{ parameters.disablePasswordAuth }} `
8080 --parameters entraIdAllowedGroups="${{ parameters.entraIdAllowedGroups }}" `
Original file line number Diff line number Diff line change @@ -95,10 +95,10 @@ stages:
9595 websiteName : $(WebsiteName)
9696 adoOrganizationUrl : $(System.CollectionUri)
9797 adoProjectName : $(System.TeamProject)
98- adoRepositoryName : $( AdoRepositoryName)
98+ adoRepositoryName : ${{ coalesce(variables. AdoRepositoryName, '') }}
9999 enableEntraIdAuth : ${{ coalesce(variables.EnableEntraIdAuth, false) }}
100- azureTenantId : $( AzureTenantId)
101- azureClientId : $( AzureClientId)
102- azureClientSecret : $( AzureClientSecret)
103- entraIdAllowedGroups : $( EntraIdAllowedGroups)
100+ azureTenantId : ${{ coalesce(variables. AzureTenantId, '') }}
101+ azureClientId : ${{ coalesce(variables. AzureClientId, '') }}
102+ azureClientSecret : ${{ coalesce(variables. AzureClientSecret, '') }}
103+ entraIdAllowedGroups : ${{ coalesce(variables. EntraIdAllowedGroups, '') }}
104104 disablePasswordAuth : ${{ coalesce(variables.DisablePasswordAuth, false) }}
You can’t perform that action at this time.
0 commit comments