From 5acbe5045cf016b8b64a9d974a497301c00d851b Mon Sep 17 00:00:00 2001 From: Quentin Manfroi Date: Tue, 2 Oct 2018 15:15:10 +0200 Subject: [PATCH] MON-301 remove useless replace for event alert output --- common/filter-tags/outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/filter-tags/outputs.tf b/common/filter-tags/outputs.tf index b1b8b5a..9eb9fc6 100644 --- a/common/filter-tags/outputs.tf +++ b/common/filter-tags/outputs.tf @@ -10,5 +10,5 @@ output "service_check" { output "event_alert" { 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}"}" }