carbans / terraform-provider-nextdns

NextDNS Terraform Provider

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NextDNS Terraform Provider

This repo is a fork of amalucelli/terraform-provider-nextdns, I decide to fork it because the original repo is not responding to PR. Thanks to amalucelli for the original work.

NextDNS provider for Terraform.

This provider lets you declaratively define the configuration for your NextDNS profiles.

Requirements

An API Key is required to interact with the NextDNS API. You can find your API Key in the NextDNS account page.

Getting Started

terraform {
  required_providers {
    nextdns = {
      source  = "carbans/nextdns"
      version = "0.2.2"
    }
  }
}

provider "nextdns" {
  api_key = "NEXTDNS_API_KEY"
}

About

NextDNS Terraform Provider

License:MIT License


Languages

Language:Go 98.6%Language:Makefile 1.4%