feat(opentofu): define bare-metal host configuration

This commit is contained in:
Tibo De Peuter 2026-07-27 20:25:39 +02:00
parent 06500a8f01
commit 89cec4e0f3
Signed by: tdpeuter
SSH key fingerprint: SHA256:u/h/LVoqKF1Iz02uOyxe6hcjmoZASCGV2HM0TG9ZMoU
5 changed files with 169 additions and 72 deletions

View file

@ -0,0 +1,15 @@
variable "node_name" {
type = string
description = "The name of the Proxmox node (e.g. pve)"
}
variable "data_disk_id" {
type = string
description = "The persistent block device ID for the data disk (e.g. wwn-0x500...)"
}
variable "zfs_pool_name" {
type = string
default = "data"
description = "The name of the ZFS pool to create on the data disk"
}