2022-08-23 09:50:55 -07:00
|
|
|
variable "nomad_address" {
|
|
|
|
type = string
|
2022-11-20 16:24:00 -08:00
|
|
|
default = "http://n1.thefij:4646"
|
2022-08-23 09:50:55 -07:00
|
|
|
}
|
|
|
|
|
2022-03-21 21:26:04 -07:00
|
|
|
variable "base_hostname" {
|
2022-04-13 14:01:14 -07:00
|
|
|
type = string
|
2022-03-21 21:26:04 -07:00
|
|
|
description = "Base hostname to serve content from"
|
2023-08-24 15:03:36 -07:00
|
|
|
default = "thefij.rocks"
|
2022-03-21 21:26:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "nomad_secret_id" {
|
2022-04-13 14:01:14 -07:00
|
|
|
type = string
|
2022-03-21 21:26:04 -07:00
|
|
|
description = "Secret ID for ACL bootstrapped Nomad"
|
2022-04-13 14:01:14 -07:00
|
|
|
sensitive = true
|
|
|
|
default = ""
|
2022-03-21 21:26:04 -07:00
|
|
|
}
|
2023-08-24 12:36:47 -07:00
|
|
|
|
|
|
|
variable "use_wesher" {
|
|
|
|
type = bool
|
|
|
|
description = "Indicates whether or not services should expose themselves on the wesher network"
|
|
|
|
default = true
|
|
|
|
}
|
2025-02-24 09:53:10 -08:00
|
|
|
|
|
|
|
variable "restoration_mode" {
|
|
|
|
type = bool
|
|
|
|
description = "Prevent starting scheduled backup jobs so data can be restored without overwriting good data"
|
|
|
|
default = false
|
|
|
|
}
|