feat: added additional_packages and renamed cloud-init vars

This commit is contained in:
AJ Schroeder
2024-06-29 10:22:03 -05:00
parent a7dfdd8042
commit b6d2481022

View File

@@ -171,7 +171,7 @@ variable "vm_vlan_tag" {
// Cloud-Init Settings // Cloud-Init Settings
variable "vm_cloud_init_enable" { variable "vm_cloudinit" {
type = bool type = bool
description = "Enable or disable cloud-init drive in Proxmox. (e.g. false)" description = "Enable or disable cloud-init drive in Proxmox. (e.g. false)"
default = false default = false
@@ -295,3 +295,10 @@ variable "common_hcp_packer_registry_enabled" {
default = false default = false
} }
// Additional Settings
variable "additional_packages" {
type = list(string)
description = "Additional packages to install."
default = []
}