An open API service indexing awesome lists of open source software.

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

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
...
```