From aa5087882d60d57e3dc56fb62d1d7e3d459d85e2 Mon Sep 17 00:00:00 2001 From: rblundon Date: Tue, 16 Sep 2025 22:09:00 -0500 Subject: [PATCH] tweak --- .../04-vm-templates/ubuntu-24.04.03/ubuntu-24.04.hcl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/infra-config/04-vm-templates/ubuntu-24.04.03/ubuntu-24.04.hcl b/infra-config/04-vm-templates/ubuntu-24.04.03/ubuntu-24.04.hcl index ff88fec..be81be9 100755 --- a/infra-config/04-vm-templates/ubuntu-24.04.03/ubuntu-24.04.hcl +++ b/infra-config/04-vm-templates/ubuntu-24.04.03/ubuntu-24.04.hcl @@ -8,10 +8,10 @@ locals { packer { required_plugins { -# ansible = { -# version = ">= 1.1.3" -# source = "github.com/hashicorp/ansible" -# } + ansible = { + version = ">= 1.1.3" + source = "github.com/hashicorp/ansible" + } name = { version = "~> 1" source = "github.com/hashicorp/proxmox" @@ -46,7 +46,7 @@ source "proxmox-iso" "ubuntu-24.04.03" { # VM Cloud-Init Settings cloud_init = true - cloud_init_storage_pool = "local-lvm" + cloud_init_storage_pool = "${var.proxmox_vm_storage_pool}" boot_command = [ "", @@ -84,7 +84,7 @@ source "proxmox-iso" "ubuntu-24.04.03" { ssh_timeout = "15m" ssh_username = "${var.ssh_username}" ssh_password = "${var.ssh_password}" - template_description = "Fedora 41-1.4, generated on ${timestamp()}" + template_description = "Ubuntu 24.04.03, generated on ${timestamp()}" template_name = "${var.vm_name}" }