feat(opentofu): define bare-metal host configuration
This commit is contained in:
parent
06500a8f01
commit
89cec4e0f3
5 changed files with 169 additions and 72 deletions
15
opentofu/modules/proxmox-node/variables.tf
Normal file
15
opentofu/modules/proxmox-node/variables.tf
Normal 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"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue