bhoriuchi / terraform-provider-dns

Supports DNS updates (RFC 2136) and can optionally be configured with secret key based transaction authentication (RFC 2845).

Home Page:https://registry.terraform.io/providers/hashicorp/dns/latest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Supports DNS updates (RFC 2136) and can optionally be configured with secret key based transaction authentication (RFC 2845).

https://registry.terraform.io/providers/hashicorp/dns/latest

License:Mozilla Public License 2.0


Languages

Language:Go 89.1%Language:Shell 6.2%Language:HTML 3.5%Language:Makefile 1.1%