mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-08-22 11:28:33 +00:00
45 lines
1.5 KiB
HCL
45 lines
1.5 KiB
HCL
variable "virtual_environment_endpoint" {
|
|
type = string
|
|
description = "The endpoint for the Proxmox Virtual Environment API (example: https://host:port)"
|
|
}
|
|
|
|
variable "virtual_environment_api_token" {
|
|
type = string
|
|
description = "The API token for the Proxmox Virtual Environment API"
|
|
}
|
|
|
|
variable "virtual_environment_ssh_username" {
|
|
type = string
|
|
description = "The username for the Proxmox Virtual Environment API"
|
|
}
|
|
|
|
variable "virtual_environment_node_name" {
|
|
description = "Name of the Proxmox node"
|
|
type = string
|
|
default = "pve"
|
|
}
|
|
|
|
variable "virtual_environment_storage" {
|
|
description = "Name of the Proxmox storage"
|
|
type = string
|
|
default = "local-lvm"
|
|
}
|
|
|
|
variable "latest_debian_12_bookworm_qcow2_img_url" {
|
|
type = string
|
|
description = "The URL for the latest Debian 12 Bookworm qcow2 image"
|
|
default = "https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2"
|
|
}
|
|
|
|
variable "release_20250701_ubuntu_24_10_lxc_img_url" {
|
|
type = string
|
|
description = "The URL for the Ubuntu 24.10 LXC image"
|
|
default = "https://mirrors.servercentral.com/ubuntu-cloud-images/releases/24.10/release-20250701/ubuntu-24.10-server-cloudimg-amd64-root.tar.xz"
|
|
}
|
|
|
|
variable "release_20250701_ubuntu_24_10_lxc_img_checksum" {
|
|
type = string
|
|
description = "The checksum for the Ubuntu 24.10 LXC image"
|
|
default = "6caa4e90e4c2ae33d3fff0526c75cfc3d221e0c1ccd49d01229a44776af126d1"
|
|
}
|