add main.tf

This commit is contained in:
Ghislain
2025-12-18 21:30:50 +01:00
parent f84cc44ad6
commit 86aad04f90

17
main.tf
View File

@@ -0,0 +1,17 @@
module "machinetest" {
count = 3
source = "QJoly/proxmox/module"
version = "0.0.1"
node_name = "master-${count.index}-tf"
node_target = "BETELGEUSE"
node_qemuga = 1
node_pool = ""
node_size_disk = "32G"
node_bootauto = true
node_template = "<NOM_DU_TEMPLATE>"
node_storage_disk = "Haumea"
node_network_host = "vmbr0"
node_notes = "Super-VM for the customer No 01"
node_cpu = 4
node_memory = 4092
}