From 4f078d4c591b9c18711931030ec76a87f3392dbd Mon Sep 17 00:00:00 2001 From: root Date: Mon, 15 Jul 2024 13:32:56 +0000 Subject: [PATCH] [variables] feat: template user and pass --- ubuntu24/packer.pkr.hcl | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ubuntu24/packer.pkr.hcl b/ubuntu24/packer.pkr.hcl index 21b23ac..142a0b1 100644 --- a/ubuntu24/packer.pkr.hcl +++ b/ubuntu24/packer.pkr.hcl @@ -57,6 +57,16 @@ variable "template_name" { default = "ubuntu.template.siempie.internal" } +variable "template_username" { + type = string + default = "" +} + +variable "template_password" { + type = string + default = "" +} + variable "ubuntu_image" { type = string default = "ubuntu-24.04-live-server-amd64.iso"