Disable tailscale on the nomad host

This commit is contained in:
2025-05-22 23:25:35 +10:00
parent f7c4defe7d
commit 3f70bc62d3
5 changed files with 20 additions and 19 deletions

View File

@@ -17,7 +17,7 @@ terraform {
}
provider "nomad" {
address = "http://jaglan-beta-m01:4646"
address = "http://jaglan-beta-m01.othrayte.one:4646"
}
data "sops_file" "secrets" {
@@ -76,7 +76,8 @@ resource "nomad_variable" "postgres" {
}
provider "postgresql" {
host = "jaglan-beta-m01"
#host = "jaglan-beta-m01.othrayte.one"
host = "192.168.1.235"
port = 5432
database = "postgres"
username = "postgres"
@@ -109,3 +110,4 @@ resource "nomad_csi_volume_registration" "unraid_database_dump" {
"password" = data.sops_file.secrets.data["unraid.nomad"]
}
}