Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.79 KB

README.md

File metadata and controls

47 lines (29 loc) · 1.79 KB

Terraform Provider for Defined.net

Documentation: https://registry.terraform.io/providers/sendsmaily/definednet/latest/docs

Requirements

  • Terraform
    • HashiCorp recommends to use the two latest terraform releases (1.8.x, 1.9.x). Our test suite validates that our provider works with these versions.
    • This provider uses the terraform plugin protocol version 6, and should work with all tools (ie. Terraform & OpenTofu) that supports it.
  • Go >= 1.22 (to build the provider plugin).

Building The Provider

  1. Clone the repository
  2. Enter the repository directory
  3. Build the provider using the Go install command:
go install

Adding Dependencies

This provider uses Go modules. Please see the Go documentation for the most up to date information about using Go modules.

To add a new dependency github.com/author/dependency to your Terraform provider:

go get github.com/author/dependency
go mod tidy

Then commit the changes to go.mod and go.sum.

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (see Requirements above).

To compile the provider, run go install. This will build the provider and put the provider binary in the $GOPATH/bin directory.

To generate or update documentation, run make generate.

In order to run the full suite of Acceptance tests, run make testacc.

Consult the official documentation for more information on the test framework's internals: https://developer.hashicorp.com/terraform/plugin/testing.