Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/amalucelli/terraform-provider-nextdns
- Owner: amalucelli
- License: mit
- Created: 2022-06-17T15:12:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-19T12:46:58.000Z (9 months ago)
- Last Synced: 2024-11-16T02:21:43.181Z (2 months ago)
- Topics: nextdns, terraform, terraform-provider
- Language: Go
- Homepage:
- Size: 121 KB
- Stars: 24
- Watchers: 5
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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"
}
```