Skip to content

Commit

Permalink
Try to avoid interpolating
Browse files Browse the repository at this point in the history
  • Loading branch information
robertvolkmann committed Aug 1, 2023
1 parent 9f9c3fc commit f2eeacb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ alertmanager:
icon_url: "{{ monitoring_slack_notification_icon_url }}"
{% endif %}
{% if monitoring_slack_notification_title is defined %}
title: "{{ monitoring_slack_notification_title }}"
title: "{{ monitoring_slack_notification_title | string }}"
{% endif %}
{% if monitoring_slack_notification_text is defined %}
text: "{{ monitoring_slack_notification_text }}"
text: "{{ monitoring_slack_notification_text | string }}"
{% endif %}
{% endif %}
templates:
Expand Down

0 comments on commit f2eeacb

Please sign in to comment.