https://github.com/nttcom/terraform-provider-ecl
Terraform Provider for Enterprise Cloud 2.0
https://github.com/nttcom/terraform-provider-ecl
Last synced: about 2 months ago
JSON representation
Terraform Provider for Enterprise Cloud 2.0
- Host: GitHub
- URL: https://github.com/nttcom/terraform-provider-ecl
- Owner: nttcom
- License: mpl-2.0
- Created: 2019-03-25T00:59:45.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2026-01-22T01:13:31.000Z (2 months ago)
- Last Synced: 2026-01-22T14:58:03.208Z (2 months ago)
- Language: Go
- Size: 11.2 MB
- Stars: 6
- Watchers: 11
- Forks: 19
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
README
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](https://www.terraform.io/downloads.html) 0.12.x
- [Go](https://golang.org/doc/install) 1.17 (to build the provider plugin)
Building The Provider
---------------------
Clone repository to anywhere you want:
```sh
$ git clone https://github.com/nttcom/terraform-provider-ecl
```
Enter the provider directory and build the provider
```sh
$ cd terraform-provider-ecl
$ make build
```
Using the provider
----------------------
You can browse the documentation within this repo [here](https://github.com/nttcom/terraform-provider-ecl/tree/master/website/docs).
Developing the Provider
---------------------------
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.17+ is *required*). You'll also need to correctly setup a [GOPATH](http://golang.org/doc/code.html#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.
```sh
$ make build
...
$ cp terraform-provider-ecl $GOPATH/bin/terraform-provider-ecl
...
```