7 lines
130 B
HCL
7 lines
130 B
HCL
resource "libvirt_pool" "tf_tmp_storage" {
|
|
name = "${var.vm_name}-pool"
|
|
type = "dir"
|
|
target {
|
|
path = var.pool_path
|
|
}
|
|
} |