diff --git a/environments/rocky-linux-cloud-10-bios/main.tf b/environments/rocky-linux-cloud-10-bios/main.tf new file mode 100644 index 0000000..2155b48 --- /dev/null +++ b/environments/rocky-linux-cloud-10-bios/main.tf @@ -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 = "rl-bios" + image_location = "https://dl.rockylinux.org/pub/rocky/10/images/x86_64/Rocky-10-GenericCloud-Base.latest.x86_64.qcow2" + ssh_key = "" + enable_cloudinit = true +} \ No newline at end of file