first commit

This commit is contained in:
Arthur Dodin
2026-05-05 11:27:26 +02:00
commit ffde04bdec
51 changed files with 22398 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
resource "proxmox_virtual_environment_vm" "vm_ubuntu" {
node_name = var.target_node
name = "vm-ubuntu"
vm_id = 1100
cpu {
cores = 2
}
memory {
dedicated = 2048
}
network_device {
bridge = "vmbr0"
}
disk {
import_from = "local:iso/jammy-server-cloudimg-amd64.img"
}
initialization {
}
}