16 lines
304 B
Terraform
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"
|
|
}
|