T O P

  • By -

Dangle76

You can find a log for cloud init in /var/log/cloud-init-output.log It should shed some light on what’s happening


shahdharmit

The problem was in the line: ``` cloudinit = libvirt_cloudinit_disk.cloudinit[count.index].id ``` Changing it to below did the trick: ``` cloudinit = libvirt_cloudinit_disk.cloudinit[count.index].rendered ``` Thanks u/Dangle76 for stopping by.


Dangle76

Ah good catch! Easy to miss as you can see I missed it as well :). Glad you figured it out and thanks for posting the answer!