0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-22 11:28:33 +00:00
terraform-provider-proxmox/examples/guides/clone-vm/variables.tf
Pavel Boldyrev c7cd61a2d3
chore(docs): cleanup and update clone-vm example (#2094)
Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
2025-08-10 20:15:00 -04:00

23 lines
605 B
HCL

variable "virtual_environment_endpoint" {
type = string
description = "The endpoint for the Proxmox Virtual Environment API (example: https://host:port)"
}
variable "virtual_environment_token" {
type = string
description = "The token for the Proxmox Virtual Environment API"
sensitive = true
}
variable "virtual_environment_node_name" {
type = string
description = "The node name for the Proxmox Virtual Environment API"
default = "pve"
}
variable "datastore_id" {
type = string
description = "Datastore for VM disks"
default = "local-lvm"
}