cookbook-openstack-compute/templates/default/nova.conf.erb

13 lines
348 B
Plaintext

<%= node["openstack"]["compute"]["custom_template_banner"] %>
<% @service_config.each do |section, values| -%>
[<%= section %>]
<% values.each do |key, value| -%>
<% if value.class == Hash -%>
<%= "# #{value['comment']}" -%>
<%= key %> = <%= value['set_to'] %>
<% else -%>
<%= key %> = <%= value %>
<% end -%>
<% end -%>
<% end -%>