30 lines
967 B
HCL
30 lines
967 B
HCL
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"
|
|
# ----------------------------------------------------------------
|
|
|
|
} |