terraform-provider-matrix

git clone git://archive.git.mtrnord.blog/MTRNord/terraform-provider-matrix.git
Log | Files | Refs | README | LICENSE

README.md (1023B)


      1 # Matrix Terraform Provider
      2 
      3 _This is heavily inspired by <https://github.com/turt2live/terraform-provider-matrix>_
      4 
      5 ## Requirements
      6 
      7 - [Terraform](https://developer.hashicorp.com/terraform/downloads) >= 1.0
      8 - [Go](https://golang.org/doc/install) >= 1.20
      9 
     10 ## Building The Provider
     11 
     12 1. Clone the repository
     13 1. Enter the repository directory
     14 1. Build the provider using the Go `install` command:
     15 
     16 ```shell
     17 go install
     18 ```
     19 
     20 ## Using the provider
     21 
     22 Fill this in for each provider
     23 
     24 ## Developing the Provider
     25 
     26 If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (see [Requirements](#requirements) above).
     27 
     28 To compile the provider, run `go install`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.
     29 
     30 To generate or update documentation, run `go generate`.
     31 
     32 In order to run the full suite of Acceptance tests, run `make testacc`.
     33 
     34 *Note:* Acceptance tests create real resources, and often cost money to run.
     35 
     36 ```shell
     37 make testacc
     38 ```