summaryrefslogtreecommitdiff
path: root/variables.tf
blob: cd49a8bf54cd87bf0f42de371e5c9604cd58043b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# définition des variables

variable "prenom" {
  description = "prenom stagiaire"
  type        = string
}

variable "vm_range" {
  description = "rangée de machines"
  type        = list(any)
}