diff options
| author | jerome <jerome@xlinfo.fr> | 2025-01-29 23:19:44 +0100 |
|---|---|---|
| committer | jerome <jerome@xlinfo.fr> | 2025-01-29 23:19:44 +0100 |
| commit | 8ec98cb82131bbee91b872f5cf2ade0b2b3cc882 (patch) | |
| tree | a2f733b35b2298380029c3d0bd08b4200b1f7c66 /variables.tf | |
| parent | a6af2236963c1786e851ec431386680a66ecf89b (diff) | |
| download | proxmox_vm-8ec98cb82131bbee91b872f5cf2ade0b2b3cc882.tar.gz proxmox_vm-8ec98cb82131bbee91b872f5cf2ade0b2b3cc882.zip | |
variables
Diffstat (limited to 'variables.tf')
| -rw-r--r-- | variables.tf | 21 |
1 files changed, 21 insertions, 0 deletions
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 +} |
