Skip to content

epilot-dev/terraform-provider-epilot-journey

Repository files navigation

Epilot is the digital foundation for sales, service, network and implementation processes in the context of the energy transition..

SDK Installation

To install this provider, copy and paste this code into your Terraform configuration. Then, run terraform init.

terraform {
  required_providers {
    epilot-journey = {
      source  = "epilot-dev/epilot-journey"
      version = "0.3.0"
    }
  }
}

provider "epilot-journey" {
  # Configuration options
}

SDK Example Usage

Testing the provider locally

Should you want to validate a change locally, the --debug flag allows you to execute the provider against a terraform instance locally.

This also allows for debuggers (e.g. delve) to be attached to the provider.

Example

go run main.go --debug
# Copy the TF_REATTACH_PROVIDERS env var
# In a new terminal
cd examples/your-example
TF_REATTACH_PROVIDERS=... terraform init
TF_REATTACH_PROVIDERS=... terraform apply

Available Resources and Operations

SDK Generated by Speakeasy