move up files to one level and erase default public key

This commit is contained in:
Lukas Greve
2025-10-18 13:18:32 +02:00
parent f5e85371e4
commit 91e23f0765
16 changed files with 72 additions and 72 deletions

View File

@@ -0,0 +1,22 @@
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 = "f42-bios"
image_location = "https://download.fedoraproject.org/pub/fedora/linux/releases/42/Cloud/x86_64/images/Fedora-Cloud-Base-Generic-42-1.1.x86_64.qcow2"
ssh_key = ""
enable_cloudinit = true
}