From 9ca925064e14cb5f22dc35c5a5c4899e3ff67fe1 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Mon, 15 Jul 2024 15:31:02 +0200 Subject: [PATCH] [packer] feat: added variables --- variables.pkrvars.hcl.example | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/variables.pkrvars.hcl.example b/variables.pkrvars.hcl.example index a721dce..c276923 100644 --- a/variables.pkrvars.hcl.example +++ b/variables.pkrvars.hcl.example @@ -1,7 +1,13 @@ +# proxmox host proxmox_node = "pve0" proxmox_url = "https://pve0:8006/api2/json" -proxmox_storage_pool = "local-lvm" proxmox_username = "packer@pve" proxmox_password = "super-secure" + +# proxmox storage variables +proxmox_storage_pool = "local-lvm" +proxmox_iso_pool = "local-lvm:iso" + +# template variables template_username = "packer" -template_password = "packer" +template_password = "packer" \ No newline at end of file