You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Terraform module to manage Codefresh pipelines. This module allows you to define and configure Codefresh pipelines using Terraform, enabling Infrastructure as Code (IaC) practices for your CI/CD workflows.
Module Diagram
graph TD
subgraph Variables
A[pipeline_name]
B[pipeline_repo]
C[pipeline_path]
D[pipeline_revision]
E[pipeline_context]
F[pipeline_location]
G[pipeline_cpu]
H[pipeline_memory]
I[pipeline_variables]
J[pipeline_tags]
K[runtime_environment_default]
end
subgraph Resource
L[codefresh_pipeline.tf-datalake-buckets-terraform]
end
%% Relationships
A -->|sets| L.name
B -->|sets| L.spec.spec_template.repo
C -->|sets| L.spec.spec_template.path
D -->|sets| L.spec.spec_template.revision
E -->|sets| L.spec.spec_template.context
F -->|sets| L.spec.spec_template.location
K -->|sets| L.spec.runtime_environment.name
G -->|sets| L.spec.runtime_environment.cpu
H -->|sets| L.spec.runtime_environment.memory
I -->|sets| L.spec.variables
J -->|sets| L.tags
Loading
CICD Implementations
An Example of a CICD Integration using Codefresh and BitBucket with this module can be found below: