Created
October 10, 2017 13:52
-
-
Save flavio/28388f85aa83a82bd64b28cce4faa5af to your computer and use it in GitHub Desktop.
terraform file triggering libvirt segfault
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
provider "libvirt" { │··························· | |
uri = "qemu:///system" │··························· | |
} │··························· | |
│··························· | |
resource "libvirt_cloudinit" "disk" { │··························· | |
name = "commoninit_${count.index}.iso" │··························· | |
local_hostname = "node_${count.index}" │··························· | |
pool = "home_libvirtd" │··························· | |
count = 100 │··························· | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment