homelab/terraform/dns/variable.tf
2024-03-17 11:07:58 +01:00

50 lines
724 B
HCL

variable powerDnsApiKey {
type= string
sensitive= true
}
variable hetznerApiKey {
type= string
sensitive= true
}
variable enableHetzner {
type= bool
default = true
}
variable powerDnsURL {
type=string
default="http://192.168.1.5:8081"
}
variable cnameList{
type=list
default= [
"arch",
"dashboard",
"drone",
"file",
"ghostfolio",
"git",
"grafana",
"hass",
"jellyfin",
"jellyfin-vue",
"paperless-ng",
"supysonic",
"syno",
"torrent",
"vault",
"vikunja",
"www",
"mail",
"ldap"
]
}
variable localEndpoint{
type= string
default= "traefik-local.service.consul."
}
variable cloudEndpoint{
type= string
default= "65.21.2.14"
}