resource "proxmox_virtual_environment_vm" "debian_vm" { count = 1 name = "test-debian${count.index+1}" node_name = "pve" tags = ["terraform", "debian"] initialization { ip_config { ipv4 { address = "dhcp" # ou encore address = "192.168.1.100/24" } } user_account { # do not use this in production, configure your own ssh key instead! username = "debian" keys = ["ssh-rsa AAAAB.....UKNwqgOCcE= paul@host"] #password = "password" } } cpu { cores = 1 type = "host" # recommended for modern CPUs } memory { dedicated = 1024 } network_device { bridge = "vmbr0" model = "virtio" } lifecycle { ignore_changes = [ network_device, # on conserve l'adresse MAC pour éviter de régénérer la VM ] } operating_system { type = "l26" } disk { datastore_id = "local-lvm" file_id = proxmox_virtual_environment_download_file.latest_debian_12_bookworm_qcow2_img.id interface = "virtio0" iothread = true discard = "on" size = 6 } } resource "proxmox_virtual_environment_download_file" "latest_debian_12_bookworm_qcow2_img" { content_type = "iso" datastore_id = "local" file_name = "debian-12-generic-amd64.qcow2.img" node_name = "pve" # cf egalement "http://store2.sio.lan/sionas/Public/iso/cloud/debian-12-generic-amd64.qcow2" url = "https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2" } resource "random_password" "debian_vm_password" { length = 16 override_special = "_%@" special = true } resource "tls_private_key" "debian_vm_key" { algorithm = "RSA" rsa_bits = 2048 } output "debian_vm_public_key" { value = tls_private_key.debian_vm_key.public_key_openssh }