Files
infra/2-nomad-config/services.tf

17 lines
395 B
HCL

provider "nomad" {
# For some reason nomad is binding to the tailscale IP but not the (local) IP that we get for the same hostname
address = "http://jaglan-beta-m01:4646"
}
resource "nomad_job" "hello_world" {
jobspec = file("hello-world.nomad")
}
resource "nomad_job" "traefik" {
jobspec = file("traefik.nomad")
}
resource "nomad_job" "webapp" {
jobspec = file("webapp.nomad")
}