puppet-grafana/templates/grafana.ini.erb

11 lines
209 B
Text
Raw Normal View History

2023-02-10 18:30:56 +01:00
<% @configuration.each_pair do |section, options| -%>
2023-02-10 19:14:20 +01:00
<% if section != 'DEFAULT' %>
2023-02-10 18:30:56 +01:00
[<%= section %>]
2023-02-10 19:14:20 +01:00
<% end -%>
2023-02-10 18:42:09 +01:00
<% options.each_pair do |option, value| -%>
2023-02-10 18:30:56 +01:00
<%= option %> = <%= value %>
<% end -%>
<% end -%>