Configure LUKS and root password via kernel boot options

This commit is contained in:
Philip Henning 2026-02-07 10:11:53 +01:00
parent 9d6ce38c8e
commit cea8812dbd
4 changed files with 38 additions and 9 deletions

View file

@ -15,3 +15,15 @@ variable "source_proxmox_http_interface" {
default = "en18"
description = "The network interface to use for the Proxmox HTTP source"
}
variable "default_luks_passphrase" {
type = string
default = "packer"
description = "Default passphrase for LUKS encryption (will be removed, when setup is completed via cloudinit)"
}
variable "default_root_passphrase" {
type = string
default = "packer"
description = "Default passphrase for root user (will be removed, when setup is completed via cloudinit)"
}