terraform-libvirt-vm icon indicating copy to clipboard operation
terraform-libvirt-vm copied to clipboard

Terraform module for KVM/Libvirt Virtual Machine.

Results 8 terraform-libvirt-vm issues
Sort by recently updated
recently updated
newest added

This provider is unable to provision VMs using libvirt running on RHEL9 and its derivatives (CentOS 9, Rocky Linux 9, Alma Linux 9, etc.) due to the default graphics type...

Hi there, do you have a docs site with more examples. I'm trying to: - Test `runcmd` - use the file features to write scripts into the VMs. And then...

Hi there, I am using tf code like this: ``` terraform { required_providers { libvirt = { source = "dmacvicar/libvirt" } } } provider "libvirt" { uri = "qemu:///system" }...

Do you have any plans to support a NAT interface vs only a bridge. I like the abstraction you layered up with. :+1: you can close as needed.

Hi there, Each time I recreate a VM, the MAC address changes and the DHCP server increments the hostname with a number. This result is that after a few tries,...

Does a static IP address support the following format of rhel9.2: cat /etc/NetworkManager/system-connections/eno2.nmconnection [connection] id=eno2 uuid=e34b1aa8-c822-3596-84f3-b81304969d9c type=ethernet autoconnect-priority=-999 interface-name=eno2 [ethernet] [ipv4] address1=42.62.3.35/28,42.62.3.33 dns=223.5.5.5; method=manual [ipv6] addr-gen-mode=eui64 method=auto [proxy]

The hostname input field described here - https://github.com/MonolithProjects/terraform-libvirt-vm#input_hostname doesn't appear to be used. Some conditional logic is probably needed here - https://github.com/MonolithProjects/terraform-libvirt-vm/blob/main/main.tf#L14 to define the "name" using "hostname" if that...

enhancement

Hi First, I want to thank for this module! Second, this is most probably not a bug, but any help would be appreciated. This is my terraform file: ```terraform terraform...