summaryrefslogtreecommitdiff
path: root/variables.tf
blob: 7c1dad673f1c264efe074499a35c59b29cb8c743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# variables

variable "vmid" {
  description = "id de la machine"
  type        = number
  default     = 200
}

variable "prenom" {
  description = "prenom"
  type        = string
  default     = "jerome"
}

variable "image" {
  description = "source de l'image disque"
  type        = string
  default     = "debian-cloud"
}

variable "distribution" {
  description = "distribution"
  type        = string
  default     = "debian"
}