Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 550 Bytes

File metadata and controls

21 lines (13 loc) · 550 Bytes

spacelift

Terraform module that accepts infrastructure stack configurations and transforms it into Spacelift stacks.

Usage

The following example loads the infrastructure YAML stack configs and returns Spacelift stack configurations:

  module "spacelift" {
    source = "../../modules/spacelift"

    stack_config_path_template        = "stacks/%s.yaml"
    component_deps_processing_enabled = true
  
    context = module.this.context
  }

See examples/spacelift for more details.