Files
cluster-init/terraform/variables.tf
2026-06-14 14:21:09 +07:00

25 lines
397 B
HCL

variable "proxmox_endpoint" {
description = "Proxmox API endpoint URL"
}
variable "proxmox_api_token" {
description = "Proxmox API token (user@realm!tokenid=secret)"
sensitive = true
}
variable "proxmox_node" {
default = "proxmox03"
}
variable "proxmox_pool" {
default = "IaC"
}
variable "gateway" {
default = "192.168.1.1"
}
variable "dns_server" {
default = "192.168.1.1"
}