mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-08-22 19:38:35 +00:00
23 lines
605 B
HCL
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"
|
|
}
|