homelab/terraform/dns/variable.tf

53 lines
765 B
Terraform
Raw Normal View History

2023-11-04 20:33:51 +00:00
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= [
2024-04-12 06:59:20 +00:00
"auth",
2023-11-04 20:33:51 +00:00
"arch",
"dashboard",
"drone",
"file",
"ghostfolio",
"git",
"grafana",
"hass",
"jellyfin",
"jellyfin-vue",
"paperless-ng",
"supysonic",
"syno",
"torrent",
"vault",
"vikunja",
2023-11-05 13:58:41 +00:00
"www",
2024-01-21 15:51:20 +00:00
"mail",
2024-03-17 09:39:52 +00:00
"ldap",
2024-04-28 14:10:43 +00:00
"budget",
"mealie",
2023-11-04 20:33:51 +00:00
]
}
variable localEndpoint{
type= string
default= "traefik-local.service.consul."
}
variable cloudEndpoint{
type= string
2024-01-30 19:54:08 +00:00
default= "65.21.2.14"
2023-11-04 20:33:51 +00:00
}