Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/amalucelli/terraform-provider-nextdns

NextDNS Terraform Provider
https://github.com/amalucelli/terraform-provider-nextdns

nextdns terraform terraform-provider

Last synced: 6 days ago
JSON representation

NextDNS Terraform Provider

Awesome Lists containing this project

README

        

# terraform-provider-nextdns

[NextDNS](https://nextdns.io/) provider for [Terraform](https://terraform.io).

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](https://my.nextdns.io/account) page.

## Getting Started

```hcl
terraform {
required_providers {
nextdns = {
source = "amalucelli/nextdns"
version = "0.1.0"
}
}
}

provider "nextdns" {
api_key = "NEXTDNS_API_KEY"
}
```