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

variable "nom" {
  description = "nom distribution"
  type        = string
}

variable "image" {
  description = "source de l'image disque"
  type        = string
}

variable "package" {
  description = "nom du package manager (dnf/apt) pour installer qemu-guest-agent le cas échéant)"
  type        = string
}