18 lines
371 B
HCL
18 lines
371 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 = "dev.homelab"
|
|
}
|
|
|
|
variable "nomad_secret_id" {
|
|
type = string
|
|
description = "Secret ID for ACL bootstrapped Nomad"
|
|
sensitive = true
|
|
default = ""
|
|
}
|