Files
proxmox-iac/variables.tf
2026-03-19 20:49:00 +09:00

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
}