This commit is contained in:
n005char@gmail.com
2026-05-05 12:26:00 +03:00
commit fa588a40fe
13 changed files with 4886 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
resource "proxmox_virtual_environment_vm" "vm1" {
node_name = "pve2"
vm_id = 100
name = "alpine"
cpu {
cores = 2
}
memory {
dedicated = 2048
}
network_device {
bridge = "vmbr0"
}
cdrom {
file_id = "local:iso/alpine-standard-3.21.3-x86_64.iso"
}
}