diff options
| author | jerome <jerome@xlinfo.fr> | 2025-02-07 11:40:40 +0100 |
|---|---|---|
| committer | jerome <jerome@xlinfo.fr> | 2025-02-07 11:40:40 +0100 |
| commit | 69b3a2cf08873de59883e3c2661ea1b57726eee3 (patch) | |
| tree | 79824f61bf1a6b556d85fd652f3b6ead787a4744 /variables.tf | |
| download | terraform-ansible-69b3a2cf08873de59883e3c2661ea1b57726eee3.tar.gz terraform-ansible-69b3a2cf08873de59883e3c2661ea1b57726eee3.zip | |
premier commit
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 +} |
