mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-06 07:36:37 -03:00
10 lines
342 B
HCL
10 lines
342 B
HCL
resource "nomad_job" "app" {
|
|
jobspec = templatefile("${path.module}/conf/keycloak.hcl", {
|
|
NOMAD_ALLOC_DIR = "/alloc"
|
|
POSTGREE_ENDPOINT = var.postgree_endpoint
|
|
POSTGREE_USER = var.postgree_user
|
|
POSTGREE_PASSWORD = var.postgree_password
|
|
KC_USER = var.KC_USER
|
|
KC_PASSWORD = var.KC_PASSWORD
|
|
})
|
|
}
|