2022-08-23 16:50:55 +00:00
|
|
|
variable "nomad_address" {
|
|
|
|
type = string
|
2022-11-21 00:24:00 +00:00
|
|
|
default = "http://n1.thefij:4646"
|
2022-08-23 16:50:55 +00:00
|
|
|
}
|
|
|
|
|
2022-03-22 04:26:04 +00:00
|
|
|
variable "base_hostname" {
|
2022-04-13 21:01:14 +00:00
|
|
|
type = string
|
2022-03-22 04:26:04 +00:00
|
|
|
description = "Base hostname to serve content from"
|
2023-08-24 22:03:36 +00:00
|
|
|
default = "thefij.rocks"
|
2022-03-22 04:26:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "nomad_secret_id" {
|
2022-04-13 21:01:14 +00:00
|
|
|
type = string
|
2022-03-22 04:26:04 +00:00
|
|
|
description = "Secret ID for ACL bootstrapped Nomad"
|
2022-04-13 21:01:14 +00:00
|
|
|
sensitive = true
|
|
|
|
default = ""
|
2022-03-22 04:26:04 +00:00
|
|
|
}
|
2023-08-24 19:36:47 +00:00
|
|
|
|
|
|
|
variable "use_wesher" {
|
|
|
|
type = bool
|
|
|
|
description = "Indicates whether or not services should expose themselves on the wesher network"
|
|
|
|
default = true
|
|
|
|
}
|