14 lines
194 B
Terraform
14 lines
194 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
libvirt = {
|
||
|
source = "dmacvicar/libvirt"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
resource "libvirt_pool" "data" {
|
||
|
name = "data"
|
||
|
type = "dir"
|
||
|
path = "/mnt/data/volumes"
|
||
|
}
|