Files
ProxmoxInfra/variables.tf
bob dc4ade7ed1 refactor(provider): switch auth from password to API token
Prefer API token over username/password — scoped to least-privilege
TerraformRole, reduces blast radius if credentials leak.
2026-04-10 21:31:58 -05:00

17 lines
495 B
HCL

variable "proxmox_endpoint" {
description = "URL of the Proxmox API endpoint, e.g. https://192.168.1.10:8006/"
type = string
}
variable "proxmox_api_token" {
description = "Proxmox API token in the form user@realm!token-id=secret, e.g. terraform@pve!api-token-name=<SECRET>"
type = string
sensitive = true
}
variable "proxmox_insecure" {
description = "Skip TLS certificate verification (set true for self-signed certs)"
type = bool
default = true
}