terraform/modules/dns/variables.tf

27 lines
537 B
HCL

variable "domain" {
type = string
description = "main domain"
}
variable "caladan" {
type = object({
ipv4 = string
ipv6 = string
domains = set(string)
})
description = "configuration values specific to caladan (my Alpine VPS hosted on linode)"
}
variable "fugu" {
type = object({
ipv4 = string
ipv6 = string
})
description = "configuration values specific to fugu (my OpenBSD VPS hosted on vultr)"
}
variable "dkim_pub_key" {
type = string
description = "dkim public key"
}