I’m trying to use variables on a Cloud-Init Customization:
<%
fqdn = "#{evm[:vm_target_hostname]}.#{evm[:dialog_domain]}"
%>
hostname: <%= fqdn %>
(“dialog_domain” is a dialog variable)
As I understand from the kickstart customization templates examples, it should work. It doesn’t, any idea?
Thanks!