Skip to content

amalucelli/terraform-provider-nextdns

Repository files navigation

terraform-provider-nextdns

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  = "amalucelli/nextdns"
      version = "0.1.0"
    }
  }
}

provider "nextdns" {
  api_key = "NEXTDNS_API_KEY"
}