- Website: https://www.terraform.io
- Mailing list: Google Groups
Clone repository to: $GOPATH/src/github.com/terraform-providers/terraform-provider-dns
$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers
$ git clone [email protected]:terraform-providers/terraform-provider-dns
Enter the provider directory and build the provider
$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-dns
$ make build
If you wish to work on the provider, you'll first need Go installed on your machine (version 1.16+ is required). You'll also need to correctly setup a 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.
$ make bin
...
$ $GOPATH/bin/terraform-provider-dns
...
In order to run unit testing for the provider:
$ make test
In order to run acceptance tests, excluding ones requiring a DNS_UPDATE_SERVER
:
$ make testacc
To run the full suite of acceptance tests:
$ ./internal/provider/acceptance.sh
Which has the following prerequisites:
- Docker
- Go
- Kerberos Clients (e.g.
kinit
) - Make
- Terraform CLI
/etc/hosts
entry (or equivalent):127.0.0.1 ns.example.com
- Docker for Mac
- Go or with Homebrew:
brew install go
- Terraform CLI or with Homebrew:
brew install hashicorp/tap/terraform
echo "127.0.0.1 ns.example.com" | sudo tee -a /etc/hosts
echo "127.0.0.1 ns.example.com" | sudo tee -a /etc/hosts
sudo apt-get install krb5-user make
# If prompted for Kerberos configuration:
# Default Realm: EXAMPLE.COM
# Server: ns.example.com
# Administrative Server: ns.example.com