17 lines
545 B
HCL
17 lines
545 B
HCL
variable "proxmox_api_token" {
|
|
description = "API token for Proxmox"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "virtual_environment_storage" {
|
|
description = "Name of the Proxmox storage"
|
|
type = string
|
|
default = "local-lvm"
|
|
}
|
|
|
|
variable "release_20250610_ubuntu_24_noble_lxc_img_url" {
|
|
type = string
|
|
description = "The URL for the Ubuntu 24.04 LXC image"
|
|
default = "https://mirrors.servercentral.com/ubuntu-cloud-images/releases/24.04/release-20250610/ubuntu-24.04-server-cloudimg-amd64-root.tar.xz"
|
|
} |