This repository has been archived on 2026-08-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
terraform-provider-dynu/docs/index.md
T

34 lines
824 B
Markdown

---
page_title: "dynu Provider"
description: |-
Terraform provider for Dynu DNS domains and DNS records (full CRUD) plus lookup data sources.
---
# dynu Provider
The `dynu` provider manages Dynu root domains and DNS records, and supports lookup data sources for discovery workflows.
This provider repository is standalone and does not require any external companion repository or helper script.
## Example Usage
```terraform
terraform {
required_providers {
dynu = {
source = "dynu/dynu"
}
}
}
provider "dynu" {
api_key = var.dynu_api_key
}
```
## Schema
### Optional
- `api_key` (String, Sensitive) Dynu API key. Configure via provider argument (for example with `var.dynu_api_key` from `terraform.tfvars`).
- `base_url` (String) Override API base URL. Primarily intended for automated tests.