28 lines
694 B
Terraform
28 lines
694 B
Terraform
|
|
variable "dynu_root_domain" {
|
|
description = "Dynu root domain name to reconcile/import (for example: lan.ddnsgeek.com)."
|
|
type = string
|
|
default = "lan.ddnsgeek.com"
|
|
}
|
|
|
|
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
|
|
}
|