homelab-nomad/databases/main.tf

39 lines
710 B
Terraform
Raw Normal View History

2023-05-03 21:16:47 +00:00
resource "nomad_job" "mysql-server" {
hcl2 {
enabled = true
}
jobspec = file("${path.module}/mysql.nomad")
# Block until deployed as there are servics dependent on this one
detach = false
}
resource "nomad_job" "postgres-server" {
hcl2 {
enabled = true
}
jobspec = file("${path.module}/postgres.nomad")
# Block until deployed as there are servics dependent on this one
detach = false
}
resource "nomad_job" "redis" {
for_each = toset(["blocky", "authelia"])
2023-05-03 21:16:47 +00:00
hcl2 {
enabled = true
}
jobspec = templatefile("${path.module}/redis.nomad",
{
name = each.key,
}
)
2023-05-03 21:16:47 +00:00
# Block until deployed as there are servics dependent on this one
detach = false
}