65 lines
977 B
HCL
65 lines
977 B
HCL
variable "edge_host" {
|
|
type = string
|
|
default = "132.145.170.74"
|
|
}
|
|
|
|
variable "edge_user" {
|
|
type = string
|
|
default = "ubuntu"
|
|
}
|
|
|
|
variable "edge_ssh_key_path" {
|
|
type = string
|
|
default = "/home/jv/.ssh/id_ed25519"
|
|
}
|
|
|
|
variable "edge_install_dir" {
|
|
type = string
|
|
default = "/opt/homelab-edge"
|
|
}
|
|
|
|
variable "server_name" {
|
|
type = string
|
|
default = "lab2025.duckdns.org"
|
|
}
|
|
|
|
variable "enable_letsencrypt" {
|
|
type = bool
|
|
default = true
|
|
}
|
|
|
|
variable "letsencrypt_email" {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "letsencrypt_staging" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "backend_host" {
|
|
type = string
|
|
default = "100.77.80.72"
|
|
}
|
|
|
|
variable "backend_port" {
|
|
type = number
|
|
default = 30080
|
|
}
|
|
|
|
variable "demos_backend_port" {
|
|
type = number
|
|
default = 30081
|
|
}
|
|
|
|
variable "haproxy_stats_user" {
|
|
type = string
|
|
default = "admin"
|
|
}
|
|
|
|
variable "haproxy_stats_password" {
|
|
type = string
|
|
default = "adminpassword"
|
|
}
|