mirror of
https://git.sr.ht/~magic_rb/cluster
synced 2024-11-24 17:16:15 +01:00
5ed9ee1903
Signed-off-by: Magic_RB <magic_rb@redalder.org>
112 lines
2.3 KiB
HCL
112 lines
2.3 KiB
HCL
resource "nomad_volume" "home-assistant_hass" {
|
|
type = "csi"
|
|
plugin_id = "nfs"
|
|
volume_id = "home-assistant_hass"
|
|
name = "home-assistant_hass"
|
|
external_id = "home-assistant_hass"
|
|
|
|
capability {
|
|
access_mode = "single-node-writer"
|
|
attachment_mode = "file-system"
|
|
}
|
|
|
|
context = {
|
|
server = "blowhole.hosts.in.redalder.org"
|
|
share = "/var/nfs/home-assistant_hass"
|
|
}
|
|
|
|
mount_options {
|
|
fs_type = "nfs"
|
|
mount_flags = [ "nolock", "hard" ]
|
|
}
|
|
}
|
|
|
|
resource "nomad_volume" "home-assistant_zigbee2mqtt" {
|
|
type = "csi"
|
|
plugin_id = "nfs"
|
|
volume_id = "home-assistant_zigbee2mqtt"
|
|
name = "home-assistant_zigbee2mqtt"
|
|
external_id = "home-assistant_zigbee2mqtt"
|
|
|
|
capability {
|
|
access_mode = "single-node-writer"
|
|
attachment_mode = "file-system"
|
|
}
|
|
|
|
context = {
|
|
server = "blowhole.hosts.in.redalder.org"
|
|
share = "/var/nfs/home-assistant_zigbee2mqtt"
|
|
}
|
|
|
|
mount_options {
|
|
fs_type = "nfs"
|
|
mount_flags = [ "nolock", "hard" ]
|
|
}
|
|
}
|
|
|
|
resource "nomad_volume" "home-assistant_mosquitto" {
|
|
type = "csi"
|
|
plugin_id = "nfs"
|
|
volume_id = "home-assistant_mosquitto"
|
|
name = "home-assistant_mosquitto"
|
|
external_id = "home-assistant_mosquitto"
|
|
|
|
capability {
|
|
access_mode = "single-node-writer"
|
|
attachment_mode = "file-system"
|
|
}
|
|
|
|
context = {
|
|
server = "blowhole.hosts.in.redalder.org"
|
|
share = "/var/nfs/home-assistant_mosquitto"
|
|
}
|
|
|
|
mount_options {
|
|
fs_type = "nfs"
|
|
mount_flags = [ "nolock", "hard" ]
|
|
}
|
|
}
|
|
|
|
resource "vault_policy" "home-assistant-policy" {
|
|
name = "home-assistant-policy"
|
|
policy = <<EOF
|
|
path "kv/data/home-assistant" {
|
|
capabilities = ["read"]
|
|
}
|
|
EOF
|
|
}
|
|
|
|
resource "vault_policy" "zigbee2mqtt-policy" {
|
|
name = "zigbee2mqtt-policy"
|
|
policy = <<EOF
|
|
path "kv/data/mqtt" {
|
|
capabilities = ["read"]
|
|
}
|
|
|
|
path "kv/data/zigbee2mqtt" {
|
|
capabilities = ["read"]
|
|
}
|
|
EOF
|
|
}
|
|
|
|
resource "vault_policy" "mosquitto-policy" {
|
|
name = "mosquitto-policy"
|
|
policy = <<EOF
|
|
path "kv/data/mqtt" {
|
|
capabilities = ["read"]
|
|
}
|
|
EOF
|
|
}
|
|
|
|
resource "nomad_job" "home-assistant" {
|
|
jobspec = file("${path.module}/job/home-assistant.hcl")
|
|
|
|
hcl2 {
|
|
enabled = true
|
|
vars = {
|
|
flake_ref = "${var.flake_host}?rev=${var.flake_rev}&ref=${var.flake_ref}"
|
|
flake_sha = var.flake_sha
|
|
}
|
|
}
|
|
}
|