From 8ec98cb82131bbee91b872f5cf2ade0b2b3cc882 Mon Sep 17 00:00:00 2001 From: jerome Date: Wed, 29 Jan 2025 23:19:44 +0100 Subject: variables --- variables.tf | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 variables.tf (limited to 'variables.tf') diff --git a/variables.tf b/variables.tf new file mode 100644 index 0000000..ad54ea9 --- /dev/null +++ b/variables.tf @@ -0,0 +1,21 @@ +# variables + +variable "vmid" { + description = "id de la machine" + type = number +} + +variable "prenom" { + description = "prenom" + type = string +} + +variable "image" { + description = "source de l'image disque" + type = string +} + +variable "distribution" { + description = "distribution" + type = string +} -- cgit v1.2.3