This provider plugin is maintained by:
- Keiichi Hikita (@keiichi-hikita)
- Takuma Watanabe (@t-wata)
- Kazunori Yoshihara (@kazyshr)
- Hitoyoshi Ohta (@htysh)
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
You can browse the documentation within this repo here.
If you wish to work on the provider, you'll first need Go installed on your machine (version 1.8+ 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
...