Skip to content

Commit

Permalink
Update multi-tenant-pipeline.yml (#504)
Browse files Browse the repository at this point in the history
Corrected the displayNames to avoid confusion
  • Loading branch information
arrerezai authored Mar 25, 2024
1 parent ca96852 commit 4ddc2a3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions StarterKit/Pipelines/AzureDevOps/multi-tenant-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ stages:
# condition: and(succeeded(), or(eq(variables['planStep.deployPolicyChanges'], 'yes'), eq(variables['planStep.deployRoleChanges'], 'yes')))
# End Publish
- stage: completedFeature
displayName: "Completed Plans - Feature Branch"
displayName: "Tenant 1 and 2 Completed Plans - Feature Branch"
dependsOn:
- tenant1PlanFeatureStage
- tenant2PlanFeatureStage
Expand Down Expand Up @@ -225,7 +225,7 @@ stages:
- checkout: self
- task: AzurePowerShell@5
name: deployStep
displayName: Deploy Tenant1 Policy
displayName: Deploy Tenant 1 Policy
inputs:
azureSubscription: $(tenantDeployServiceConnection)
pwsh: true
Expand All @@ -251,7 +251,7 @@ stages:
steps:
- checkout: self
- task: AzurePowerShell@5
displayName: Deploy Tenant1 Role Assignments
displayName: Deploy Tenant 1 Role Assignments
inputs:
azureSubscription: $(tenantRolesServiceConnection)
pwsh: true
Expand Down Expand Up @@ -313,7 +313,7 @@ stages:
- checkout: self
- task: AzurePowerShell@5
name: deployStep
displayName: Deploy Tenant1 Policy
displayName: Deploy Tenant 2 Policy
inputs:
azureSubscription: $(tenantDeployServiceConnection)
pwsh: true
Expand All @@ -323,7 +323,7 @@ stages:
-pacEnvironmentSelector $(pacEnvironmentSelector) `
-InformationAction Continue
- stage: tenant2RolesStage
displayName: "Tenant Deploy Role Assignments"
displayName: "Tenant 2 Deploy Role Assignments"
dependsOn:
- tenant2DeployPolicyStage
condition: and(not(failed()), not(canceled()), eq(dependencies.tenant2PlanMainStage.outputs['planJob.planStep.deployRoleChanges'], 'yes'), in(variables['Build.Reason'], 'Manual', 'IndividualCI', 'BatchedCI'), contains(variables['Build.SourceBranch'], 'refs/heads/main'))
Expand All @@ -339,7 +339,7 @@ stages:
steps:
- checkout: self
- task: AzurePowerShell@5
displayName: Deploy Tenant1 Role Assignments
displayName: Deploy Tenant 2 Role Assignments
inputs:
azureSubscription: $(tenantRolesServiceConnection)
pwsh: true
Expand Down

0 comments on commit 4ddc2a3

Please sign in to comment.