summaryrefslogtreecommitdiff
path: root/tofu/lots/variables.tf
blob: f983e480fcb17e4acf64cd12652036a76e369c5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
variable "nom" {
  description = "nom de la machine"
  type        = string
  default     = "debian"
}

variable "image" {
  description = "image source"
  type        = string
  default     = "images:debian/12/cloud"
}

variable "nb" {
  description = "nombre de machines"
  type        = number
  default     = 2
}