Add Dynu Terraform brownfield DNS documentation layer

This commit is contained in:
beatz174-bit
2026-05-13 03:17:37 +10:00
parent bd23339edd
commit 2a97864a06
13 changed files with 317 additions and 0 deletions
@@ -0,0 +1,20 @@
variable "dynu_api_key" {
description = "Dynu API key/token used by the Dynu Terraform provider."
type = string
sensitive = true
default = null
}
variable "dynu_username" {
description = "Optional Dynu username, only if required by the provider."
type = string
sensitive = true
default = null
}
variable "dynu_password" {
description = "Optional Dynu password, only if required by the provider."
type = string
sensitive = true
default = null
}