Files
advanced-libvirt-terraform-…/multiple/shared_modules/pool.tf
2025-09-04 11:30:46 +02:00

7 lines
122 B
HCL

resource "libvirt_pool" "tf_tmp_storage" {
name = var.pool_name
type = "dir"
target {
path = var.pool_path
}
}