12 lines
301 B
HCL
12 lines
301 B
HCL
variable "proxmox_endpoint" {
|
|
description = "Proxmox VE API endpoint URL"
|
|
type = string
|
|
default = "https://192.168.50.87:8006"
|
|
}
|
|
|
|
variable "proxmox_api_token" {
|
|
description = "Proxmox API token (format: user@realm!tokenid=token-value)"
|
|
type = string
|
|
sensitive = true
|
|
}
|