diff options
Diffstat (limited to 'variables.tf')
| -rw-r--r-- | variables.tf | 16 |
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 +} |
