In an Azure release pipeline, what happens when you configure multiple artifact sources?
Think about how pipelines react to changes in any input source.
Azure release pipelines trigger when any configured artifact source has a new version. This allows the pipeline to react to changes from multiple sources independently.
Which statement best describes the role of stages and approvals in an Azure release pipeline?
Consider how deployment steps and manual checks work together.
Stages represent deployment phases like Dev, Test, Prod. Approvals are manual gates that pause the pipeline before or after stages to ensure human review.
Which method is the most secure way to handle sensitive information like passwords in Azure release pipelines?
Think about centralized secret management and runtime retrieval.
Using Azure Key Vault linked to the pipeline ensures secrets are stored securely and accessed only at runtime, reducing exposure risk.
Given a variable named connectionString defined at both pipeline and stage levels, which value is used during deployment in that stage?
Consider how variable scopes work in layered configurations.
Stage-level variables override pipeline-level variables for that stage, allowing environment-specific customization.
You want to speed up deployments in a release pipeline that has multiple independent stages. Which approach achieves this best?
Think about how tasks can run at the same time safely.
Running independent stages in parallel reduces total deployment time while maintaining separation and control.