This Terraform module creates a libvirt pool with customizable configurations.
| Variable Name | Description | Required | Default Value |
|---|---|---|---|
pool_name |
Name of the libvirt pool | ❌ | |
pool_path |
Path for the libvirt pool | ❌ | /var/lib/libvirt/images |
ℹ️ Icons: ✔️ - Required, ❌ - Optional
module "libvirt_pool" {
source = "kubealex/libvirt-resources/libvirt//modules/terraform-libvirt-pool"
version = "0.1.3" # Uncomment only if you are using the version 0.8.x of the provider
version = "0.2" # If you are using the version 0.9.x of the provider
pool_name = "my_pool"
pool_path = "/path/to/pool"
}