https://github.com/nttcom/terraform-provider-fic
Terraform Provider for Flexible InterConnect
https://github.com/nttcom/terraform-provider-fic
Last synced: 4 months ago
JSON representation
Terraform Provider for Flexible InterConnect
- Host: GitHub
- URL: https://github.com/nttcom/terraform-provider-fic
- Owner: nttcom
- License: mpl-2.0
- Created: 2019-11-21T04:35:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-30T14:01:39.000Z (almost 3 years ago)
- Last Synced: 2025-04-06T08:35:36.659Z (about 1 year ago)
- Language: Go
- Size: 428 KB
- Stars: 3
- Watchers: 11
- Forks: 4
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Terraform Flexible InterConnect(FIC) Provider
=============================================
Maintainers
-----------
This provider plugin is maintained by:
* Keiichi Hikita ([@keiichi-hikita](https://github.com/keiichi-hikita))
Documentation
-------------
Full, comprehensive documentation is available on the Terraform website:
https://registry.terraform.io/providers/nttcom/fic/latest/docs
Requirements
------------
- [Terraform](https://www.terraform.io/downloads.html) 0.12.x
- [Go](https://golang.org/doc/install) 1.13 (to build the provider plugin)
Building The Provider
---------------------
Clone repository to anywhere you want:
```sh
$ git clone https://github.com/nttcom/terraform-provider-fic
```
Enter the provider directory and build the provider
```sh
$ cd terraform-provider-fic
$ make build
```
Using the provider
----------------------
You can browse the documentation within this repo [here](https://github.com/nttcom/terraform-provider-fic/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.8+ 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-fic $GOPATH/bin/terraform-provider-fic
...
```