Files
advanced-libvirt-terraform-…/multiple/shared_modules/pool.tf
2025-09-14 12:15:02 +02:00

7 lines
130 B
HCL

resource "libvirt_pool" "tf_tmp_storage" {
name = "${var.vm_name}-pool"
type = "dir"
target {
path = var.pool_path
}
}