We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85dffd0 commit 7c2f278Copy full SHA for 7c2f278
examples/nagios_.jinja2
@@ -9,8 +9,12 @@ define {{object_name}} {
9
{% endif %}
10
{% for key,value in resource.parameters.items() %}
11
{% if key not in metaparams or key in allowed_metaparams %}
12
+ {% if value is iterable and value is not string %}
13
+ {{key}} {{value|join(", ")}}
14
+ {% else %}
15
{{key}} {{value}}
16
17
+ {% endif %}
18
{% endfor %}
19
}
20
0 commit comments