summaryrefslogtreecommitdiff
path: root/variables.tf
diff options
context:
space:
mode:
Diffstat (limited to 'variables.tf')
-rw-r--r--variables.tf4
1 files changed, 4 insertions, 0 deletions
diff --git a/variables.tf b/variables.tf
index ad54ea9..7c1dad6 100644
--- a/variables.tf
+++ b/variables.tf
@@ -3,19 +3,23 @@
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"
}