first commit
This commit is contained in:
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user