packer/variables-common.pkr.hcl

17 lines
470 B
HCL

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"
}
variable "source_proxmox_http_interface" {
type = string
default = "en18"
description = "The network interface to use for the Proxmox HTTP source"
}