# Proxmox API variable "proxmox_endpoint" { description = "Adres API Proxmox" type = string default = "https://pve:8006/api2/json" } variable "proxmox_api_token" { description = "API Token user@realm!token=secret" type = string sensitive = true } # Node variable "node_name" { description = "Nazwa node Proxmox" type = string default = "pve" } # LXC variable "lxc_id" { type = number default = 200 } variable "lxc_name" { type = string default = "terraform-lxc" } variable "lxc_memory" { type = number default = 1024 } variable "lxc_cores" { type = number default = 1 }