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")
}