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

13 lines
351 B
Terraform

variable "dynu_api_key" {
description = "Dynu API key used by the provider. Set in terraform.tfvars."
type = string
default = null
sensitive = true
}
variable "hostname" {
description = "Fully-qualified hostname used by dynu_domain and dynu_dns_records data sources."
type = string
default = "www.example.com"
}