Files
tp_re20_terraform/create-vm-ubuntu/variables.tf
T
2026-05-05 11:27:26 +02:00

16 lines
304 B
Terraform

variable "pve_api_endpoint" {
description = "L'URL de l'API Proxmox"
type = string
}
variable "pve_api_token" {
description = "Le token ID et Secret"
type = string
}
variable "target_node" {
description = "Le nœud Proxmox cible"
type = string
default = "pve1"
}