mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-07 16:06:35 -03:00
15 lines
451 B
Terraform
15 lines
451 B
Terraform
|
resource "nomad_job" "app_postgree" {
|
||
|
jobspec = templatefile("${path.module}/conf/postgree.hcl", {
|
||
|
NOMAD_ALLOC_DIR = "/alloc"
|
||
|
POSTGREE_USER = var.postgree_user
|
||
|
POSTGREE_PASSWORD = var.postgree_password
|
||
|
})
|
||
|
}
|
||
|
|
||
|
resource "nomad_job" "app_pgadmin" {
|
||
|
jobspec = templatefile("${path.module}/conf/pgadmin.hcl", {
|
||
|
NOMAD_ALLOC_DIR = "/alloc"
|
||
|
PGADMIN_USER = var.pgadmin_user
|
||
|
PGADMIN_PASSWORD = var.pgadmin_password
|
||
|
})
|
||
|
}
|