From 79f8d5f5a57db64fa81e004fe6543217f575fdd1 Mon Sep 17 00:00:00 2001 From: Lukas Greve Date: Sun, 19 Oct 2025 20:13:14 +0200 Subject: [PATCH] add support for debian 13 --- environments/debian-13-cloud/main.tf | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 environments/debian-13-cloud/main.tf diff --git a/environments/debian-13-cloud/main.tf b/environments/debian-13-cloud/main.tf new file mode 100644 index 0000000..34238dc --- /dev/null +++ b/environments/debian-13-cloud/main.tf @@ -0,0 +1,30 @@ +terraform { + required_version = ">= 0.13" + required_providers { + libvirt = { + source = "dmacvicar/libvirt" + version = "0.8.3" + } + } +} + +provider "libvirt" { + uri = "qemu:///system" +} + +module "shared_modules" { + source = "../../shared_modules" + + vm_name = "deb-13-bios" + image_location = "https://cloud.debian.org/images/cloud/trixie/latest/debian-13-genericcloud-amd64.raw" + ssh_key = "" + enable_cloudinit = true + # ---- UEFI SETTINGS ---------------------------------------------- + # uefi_firmware = "/usr/share/edk2/ovmf/OVMF_CODE.fd" # Location on Fedora + # uefi_nvram_template = "/usr/share/edk2/ovmf/OVMF_VARS.fd" # Location on Fedora + uefi_firmware = "/usr/share/edk2/x64/OVMF_CODE.4m.fd" # Location on Arch Linux + uefi_nvram_template = "/usr/share/edk2/x64/OVMF_VARS.4m.fd" # Location on Arch Linux + uefi_nvram_file_suffix = "-uefi" + # ---------------------------------------------------------------- + +} \ No newline at end of file