homelab/terraform/dns/variable.tf

50 lines
724 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= [
"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",
"ldap"
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
}