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/examples/live_end_to_end_dns_zone/variables.tf
T

23 lines
634 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 "test_domain" {
type = string
description = "Disposable Dynu test domain to create and destroy during live end-to-end testing."
validation {
condition = trimspace(var.test_domain) != ""
error_message = "test_domain must be a non-empty domain name."
}
}
variable "test_ttl" {
description = "TTL in seconds for disposable DNS records. Must be 0 (provider/API default) or >= 90."
type = number
default = 300
}