first commit

This commit is contained in:
LathanDevers
2026-08-13 10:18:07 +02:00
commit 4bb85f7606
9 changed files with 168 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
variable "proxmox_token_id" {
type = string
description = "Token API Proxmox"
sensitive = true
}
variable "proxmox_token_secret" {
type = string
description = "Secret du Token API Proxmox"
sensitive = true
}
variable "client_name" {
type = string
description = "Nom du client (ex: pme-logistique-01)"
}
variable "vm_cores" {
type = number
default = 2
description = "Nombre de cœurs CPU"
}
variable "vm_memory" {
type = number
default = 4096
description = "RAM allouée en MB"
}
variable "vlan_tag" {
type = number
description = "ID du VLAN dédié pour isoler ce client"
}