nix-config/opentofu/host-layer/variables.tf

27 lines
670 B
HCL

variable "node_ip" {
type = string
description = "The IP address or hostname of the Proxmox node to configure"
}
variable "ssh_user" {
type = string
default = "root"
description = "The SSH user to connect as"
}
variable "ssh_private_key" {
type = string
default = ""
description = "The SSH private key content (if not using ssh-agent)"
}
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"
}