Use the hostname for the unraid server rather than the IP

This commit is contained in:
2025-11-07 19:42:38 +11:00
parent 2803f694e8
commit 443d614a66
8 changed files with 15 additions and 14 deletions

View File

@@ -50,7 +50,7 @@ resource "nomad_csi_volume_registration" "unraid_appdata_immich" {
}
context = {
source = "//192.168.1.192/appdata"
source = "//betelgeuse-seven-unraid.lan/appdata"
subDir = "immich" # Note: Needs to be manually created on the share
}
@@ -76,7 +76,7 @@ resource "nomad_csi_volume_registration" "unraid_media_photosvideos" {
}
context = {
source = "//192.168.1.192/media"
source = "//betelgeuse-seven-unraid.lan/media"
subDir = "Photos and Videos" # Note: Needs to be manually created on the share
}
@@ -102,7 +102,7 @@ resource "nomad_csi_volume_registration" "unraid_media_immich_encodedvideo" {
}
context = {
source = "//192.168.1.192/media"
source = "//betelgeuse-seven-unraid.lan/media"
subDir = "immich/encoded-video" # Note: Needs to be manually created on the share
}
@@ -128,7 +128,7 @@ resource "nomad_csi_volume_registration" "unraid_mediadump_photosvideos" {
}
context = {
source = "//192.168.1.192/media-dump"
source = "//betelgeuse-seven-unraid.lan/media-dump"
subDir = "Photos and Videos" # Note: Needs to be manually created on the share
}