All Projects → hashicorp → terraform-provider-dns

hashicorp / terraform-provider-dns

Licence: MPL-2.0 license
Supports DNS updates (RFC 2136) and can optionally be configured with secret key based transaction authentication (RFC 2845).

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to terraform-provider-dns

terraform-provider-minio
Terraform provider for managing minio S3 buckets and IAM Users
Stars: ✭ 123 (+64%)
Mutual labels:  terraform-provider
arp-dns-attacks
ARP spoofing, HTTP redirection, DNS spoofing and DNS forging using pcap library
Stars: ✭ 25 (-66.67%)
Mutual labels:  dns
GoHole
GoHole is a DNS server written in Golang with the same idea than the PiHole, blocking advertisements's and tracking's domains
Stars: ✭ 28 (-62.67%)
Mutual labels:  dns
doq-proxy
DNS-over-QUIC to UDP Proxy
Stars: ✭ 57 (-24%)
Mutual labels:  dns
d9scan
Network Scanner with Backdoor Detection, other Nmap resources and syn-protection detection
Stars: ✭ 23 (-69.33%)
Mutual labels:  dns
terraform-provider-infoblox
Infoblox plugin for Terraform
Stars: ✭ 40 (-46.67%)
Mutual labels:  terraform-provider
terraform-provider-pingfederate
Ping Federate Terraform Provider
Stars: ✭ 13 (-82.67%)
Mutual labels:  terraform-provider
html-over-dns
An experiment to host a website with the content served over DNS.
Stars: ✭ 29 (-61.33%)
Mutual labels:  dns
domain
A DNS library for Rust.
Stars: ✭ 148 (+97.33%)
Mutual labels:  dns
terraform-provider-filesystem
A @hashicorp Terraform provider for interacting with the filesystem
Stars: ✭ 61 (-18.67%)
Mutual labels:  terraform-provider
certbot-dns-ovh
Certbot plugin to respond to DNS-01 challenges by updating the zone.
Stars: ✭ 20 (-73.33%)
Mutual labels:  dns
dnsredir
Yet another seems better forward/proxy plugin for CoreDNS
Stars: ✭ 58 (-22.67%)
Mutual labels:  dns
terraform-provider-hsdp
Terraform provider to orchestrate various HSDP resources like IAM, CDL, CDR, MDM, Container Host, Edge, etc
Stars: ✭ 26 (-65.33%)
Mutual labels:  terraform-provider
web-dns
Query DNS via HTTP Get
Stars: ✭ 16 (-78.67%)
Mutual labels:  dns
terraform-provider-testing
An experimental Terraform provider to assist in writing tests for Terraform modules
Stars: ✭ 59 (-21.33%)
Mutual labels:  terraform-provider
docker-nginx-proxy-cloudflare-companion
Automatically update CNAME records when Docker container starts via Cloudflare
Stars: ✭ 26 (-65.33%)
Mutual labels:  dns
docker-nxfilter
🐳 Run NxFilter in Docker!
Stars: ✭ 28 (-62.67%)
Mutual labels:  dns
uppersafe-osfw
UPPERSAFE Open Source Firewall
Stars: ✭ 21 (-72%)
Mutual labels:  dns
afdns
Ad free DNS server. A docker container with a DNS server configured to block advertisement hosts.
Stars: ✭ 27 (-64%)
Mutual labels:  dns
cloudflare-ddns-updater
Dynamic DNS (DDNS) service based on Cloudflare! Access your home network remotely via a custom domain name without a static IP! Written in pure BASH~
Stars: ✭ 434 (+478.67%)
Mutual labels:  dns

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 [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

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].