Compare commits

..

2 commits

Author SHA1 Message Date
83ee33309c
chore(n8n): add environment variables for N8N protocol, host, and port in jobspec.nomad.hcl
All checks were successful
Terraform CI/CD / Terraform Format, Validate, Lint, Scan (push) Successful in 2m27s
Terraform CI/CD / Terraform Plan (push) Has been skipped
Terraform CI/CD / Terraform Apply (push) Successful in 48s
2025-06-02 19:33:49 +01:00
30bef71bb9
chore(n8n): update PostgreSQL host IP in nomad job specification 2025-06-02 19:23:12 +01:00

View file

@ -66,10 +66,13 @@ job "n8n" {
env = {
DB_TYPE = "postgresdb"
DB_POSTGRESDB_DATABASE = "n8n"
DB_POSTGRESDB_HOST = "martinibar.lan"
DB_POSTGRESDB_HOST = "192.168.1.10"
DB_POSTGRESDB_PORT = "5433"
DB_POSTGRESDB_USER = "n8n"
DB_POSTGRESDB_SCHEMA = "n8n"
N8N_PROTOCOL = "https"
N8N_HOST = "n8n.brmartin.co.uk"
N8N_PORT = "443"
}
template {