initial commit

This commit is contained in:
Philip Henning 2026-01-24 00:59:25 +01:00
commit 96c1e2d1f8
14 changed files with 551 additions and 0 deletions

11
variables-common.pkr.hcl Normal file
View file

@ -0,0 +1,11 @@
variable "proxmox_api_url" {
type = string
default = "https://sbx0pve00.int.r3w.de:8006/api2/json"
description = "Proxmox VE API URL"
}
variable "proxmox_skip_tls_verify" {
type = bool
default = false
description = "Whether to skip TLS verification for Proxmox API"
}