Documentation: https://registry.terraform.io/providers/sendsmaily/definednet/latest/docs
- 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).
- Clone the repository
- Enter the repository directory
- Build the provider using the Go
installcommand:
go installThis 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 tidyThen commit the changes to go.mod and go.sum.
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.