summaryrefslogtreecommitdiff
path: root/tofu/lots/variables.tf
diff options
context:
space:
mode:
Diffstat (limited to 'tofu/lots/variables.tf')
-rw-r--r--tofu/lots/variables.tf17
1 files changed, 17 insertions, 0 deletions
diff --git a/tofu/lots/variables.tf b/tofu/lots/variables.tf
new file mode 100644
index 0000000..f983e48
--- /dev/null
+++ b/tofu/lots/variables.tf
@@ -0,0 +1,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
+}