Quick Notes95 words
Reliably ordered dependency deployments — quick notes
Ordered dependencies — quick notes
| Need | Mechanism |
|---|---|
| Order stages | dependsOn (stages are sequential by default anyway) |
| Wait for several | dependsOn: [A, B] — all must finish |
| Require success | condition: succeeded() (implicit) |
| Prove healthy, not just finished | postRouteTraffic health checks |
| Gate on an external signal | Configure a resource-owner Invoke REST API / Query Azure Monitor Alerts check on a protected resource consumed by the stage |
Trap: a succeeded dependency stage does not itself verify service health.