Add terraform/variabeles.tf

This commit is contained in:
2026-02-14 22:59:15 +01:00
parent 8771c7525b
commit e50f667126

15
terraform/variabeles.tf Normal file
View File

@@ -0,0 +1,15 @@
variable "proxmox_token" {
sensitive = true
}
variable "cluster_name" {
default = "talos-cluster"
}
variable "node_count" {
default = 3
}
variable "network_bridge" {
default = "vmbr0"
}