Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

Terraform Module: terraform-libvirt-pool

Description

This Terraform module creates a libvirt pool with customizable configurations.

Variables

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

Example

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"
}