summaryrefslogtreecommitdiff
path: root/variables.tf
diff options
context:
space:
mode:
authorjerome <jerome@xlinfo.fr>2025-01-29 18:51:37 +0100
committerjerome <jerome@xlinfo.fr>2025-01-29 18:51:37 +0100
commit51f8d2c817097492cd762f2a1b151b0efeba0315 (patch)
treecbcc1fce7efc9d78d23d05a8a428b9505cfc1e29 /variables.tf
parent81b6cff609c1f70a62fda6e437756875244e2c55 (diff)
downloadkvm-51f8d2c817097492cd762f2a1b151b0efeba0315.tar.gz
kvm-51f8d2c817097492cd762f2a1b151b0efeba0315.zip
ajout de variables
Diffstat (limited to 'variables.tf')
-rw-r--r--variables.tf16
1 files changed, 16 insertions, 0 deletions
diff --git a/variables.tf b/variables.tf
new file mode 100644
index 0000000..0dbb12f
--- /dev/null
+++ b/variables.tf
@@ -0,0 +1,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
+}