From 82f13757d7d76861d1a17298e492f75686f7d522 Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Wed, 5 Apr 2023 20:38:35 +0200 Subject: [PATCH] add data volume pool --- bootstrap/main.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bootstrap/main.tf b/bootstrap/main.tf index 028ff22..3eaf12b 100644 --- a/bootstrap/main.tf +++ b/bootstrap/main.tf @@ -32,6 +32,12 @@ resource "libvirt_pool" "init" { path = "/kvm/init" } +resource "libvirt_pool" "data" { + name = "data" + type = "dir" + path = "/kvm/data" +} + resource "libvirt_volume" "ubuntu_jammy" { name = "ubuntu-jammy.img" pool = "iso"