homelab-nomad/vars.tf
Ian Fijolek 480fcf144c Improvements for future restore tests
A new mode to deploy without running automatic backups so that
I can test restoration without writing a blank backup.
2025-02-24 09:54:59 -08:00

30 lines
727 B
HCL

variable "nomad_address" {
type = string
default = "http://n1.thefij:4646"
}
variable "base_hostname" {
type = string
description = "Base hostname to serve content from"
default = "thefij.rocks"
}
variable "nomad_secret_id" {
type = string
description = "Secret ID for ACL bootstrapped Nomad"
sensitive = true
default = ""
}
variable "use_wesher" {
type = bool
description = "Indicates whether or not services should expose themselves on the wesher network"
default = true
}
variable "restoration_mode" {
type = bool
description = "Prevent starting scheduled backup jobs so data can be restored without overwriting good data"
default = false
}