Skip to main content

Create a single pipeline to provision resources during deployment

You may want to have a single pipeline that provisions or updates resources used during deployment. To do this, you need to create a pipeline with the following stages:

  • An IaCM stage to provision or update resources.

  • A CD stage to perform deployments.

For information about CD stages, go to CD steps, stages, and strategies.

You can pass variables from an IaCM pipeline to CD. For example, you might want to pass the Kubernetes namespace as a value.

If you view an executed pipeline and select the Apply step, you will see that all the Terraform outputs are available as output expressions. You can copy an output expression and then use it in any subsequent step or stage in the pipeline, or even other pipelines.

Output

The following example shows how to pass a variable from an IaCM stage to an another stage. If you are interested in using the "bucket_name" as an input, you either copy the current value or the path to the variables, meaning that the value will be fetched at runtime.

<+pipeline.stages.iacstage.spec.execution.steps.apply.output.outputVariables.bucket_name>

Example of how to pass a variable