2023-05-23 12:50:26 +02:00
|
|
|
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"
|
|
|
|
}
|
2023-05-25 14:43:17 +02:00
|
|
|
|
|
|
|
variable "nameservers" {
|
|
|
|
type = list(string)
|
|
|
|
description = "dns nameservers to use"
|
|
|
|
}
|