homelab/terraform/dns/variable.tf
vincent 69a2ad4efd
Some checks failed
continuous-integration/drone/push Build is failing
feat: implement mealie
2024-04-28 16:10:43 +02:00

53 lines
765 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= [
"auth",
"arch",
"dashboard",
"drone",
"file",
"ghostfolio",
"git",
"grafana",
"hass",
"jellyfin",
"jellyfin-vue",
"paperless-ng",
"supysonic",
"syno",
"torrent",
"vault",
"vikunja",
"www",
"mail",
"ldap",
"budget",
"mealie",
]
}
variable localEndpoint{
type= string
default= "traefik-local.service.consul."
}
variable cloudEndpoint{
type= string
default= "65.21.2.14"
}