Skip to content

nttcom/terraform-provider-ecl

Repository files navigation

Terraform Enterprise Cloud Provider

Documentation

Full, comprehensive documentation is available on the Terraform website:

https://registry.terraform.io/providers/nttcom/ecl/latest/docs

Requirements

  • Terraform 0.12.x
  • Go 1.17 (to build the provider plugin)

Building The Provider

Clone repository to anywhere you want:

$ git clone https://github.com/nttcom/terraform-provider-ecl 

Enter the provider directory and build the provider

$ cd terraform-provider-ecl
$ make build

Using the provider

You can browse the documentation within this repo here.

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (version 1.17+ is required). You'll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin to your $PATH.

To compile the provider, run make build. This will build the provider and put the provider binary in the $GOPATH/bin directory.

$ make build
...
$ cp terraform-provider-ecl $GOPATH/bin/terraform-provider-ecl
...