homelab/terraform-home/modules/postgreeSQL/job.tf

14 lines
450 B
Terraform
Raw Normal View History

2023-12-04 22:29:52 -03:00
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
})
}