Skip to content

Genomicsplc/terraform-provider-dns

 
 

Repository files navigation

Terraform Provider

Requirements

  • Terraform 0.12.x
  • Go 1.16 (to build the provider plugin)

Building The Provider

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 git@github.com: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

Using the provider

Fill in for each provider

Developing the Provider

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:

macOS Setup

echo "127.0.0.1 ns.example.com" | sudo tee -a /etc/hosts

Ubuntu Setup

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

Packages

No packages published

Languages

  • Go 90.7%
  • HTML 3.6%
  • Shell 3.1%
  • Makefile 1.6%
  • HCL 1.0%