MON-301 remove useless replace for event alert output

This commit is contained in:
Quentin Manfroi 2018-10-02 15:15:10 +02:00
parent e5eb473403
commit 5acbe5045c

View File

@ -10,5 +10,5 @@ output "service_check" {
output "event_alert" { output "event_alert" {
description = "The full filtering pattern for event alert monitor type" description = "The full filtering pattern for event alert monitor type"
value = "tags:${replace(local.including, "aaa", "aaaa")}${local.excluding == "" ? "" : " excluded_tags:${replace(local.excluding, "aa", "aaaa")}"}" value = "tags:${local.including}${local.excluding == "" ? "" : " excluded_tags:${local.excluding}"}"
} }