2022-02-28 12:07:25 -08:00
|
|
|
variable "base_hostname" {
|
2022-04-13 14:01:14 -07:00
|
|
|
type = string
|
2022-02-28 12:07:25 -08:00
|
|
|
description = "Base hostname to serve content from"
|
2022-04-13 14:01:14 -07:00
|
|
|
default = "dev.homelab"
|
2022-02-28 12:07:25 -08:00
|
|
|
}
|
|
|
|
|
2022-02-27 15:22:09 -08:00
|
|
|
resource "nomad_job" "traefik" {
|
|
|
|
hcl2 {
|
|
|
|
enabled = true
|
|
|
|
vars = {
|
2022-07-28 15:10:39 -07:00
|
|
|
"base_hostname" = "${var.base_hostname}",
|
2022-02-27 15:22:09 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
jobspec = file("${path.module}/traefik.nomad")
|
|
|
|
}
|