provisionsdepends
Provisionsdepends is a term used to describe the explicit declaration of dependencies between provisioning actions within infrastructure provisioning and configuration management systems. It denotes that the execution of a given provisioning step is conditioned on the successful completion of one or more other steps. The concept is commonly implemented as a dependency graph, with nodes representing provisions (such as resource creation, configuration changes, or deployment tasks) and directed edges indicating a depends-on relationship.
Benefits include ordered execution, improved reproducibility, and safer parallelism. By codifying dependencies, systems can avoid race
Provisionsdepends overlaps with and is implemented by several technologies in practice. Some infrastructure as code tools
See also: dependency graph, infrastructure as code, provisioning, orchestration, deployment pipeline.