replace count by for_each with declared set

This commit is contained in:
2025-03-24 10:28:05 +00:00
parent 3e5d65773c
commit a5e79eaba7
2 changed files with 14 additions and 8 deletions

View File

@@ -7,4 +7,10 @@ variable "proxmox_api_token" {
description = "Proxmox API token"
type = string
sensitive = true
}
variable "node_list" {
description = "List of node names in the Proxmox cluster"
type = set(string)
default = ["apex", "vertex", "zenith"]
}