17 lines
316 B
HCL
17 lines
316 B
HCL
variable "base_hostname" {
|
|
type = string
|
|
description = "Base hostname to serve content from"
|
|
default = "dev.homelab"
|
|
}
|
|
|
|
resource "nomad_job" "traefik" {
|
|
hcl2 {
|
|
enabled = true
|
|
vars = {
|
|
"base_hostname" = var.base_hostname,
|
|
}
|
|
}
|
|
|
|
jobspec = file("${path.module}/traefik.nomad")
|
|
}
|