From ecbce27540e605ea35347022c7dbda022ec6584a Mon Sep 17 00:00:00 2001 From: vandomej Date: Fri, 3 Oct 2025 10:34:36 -0700 Subject: [PATCH] Defining image pool --- control-plane/main.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/control-plane/main.tf b/control-plane/main.tf index 1d38f95..a448da2 100644 --- a/control-plane/main.tf +++ b/control-plane/main.tf @@ -50,6 +50,14 @@ resource "libvirt_network" "talos_bridge" { } } +resource "libvirt_pool" "images" { + name = "images" + type = "dir" + target { + path = "/var/lib/libvirt/images/talos-kvm" + } +} + # Download the ISO resource "libvirt_volume" "talos_iso" { name = "talos-metal-arm64.iso"