From 41a687a5abf177eb478275c5c010b9555f7f1a53 Mon Sep 17 00:00:00 2001 From: Tamas Kiss Date: Sun, 12 Mar 2023 17:08:59 +0100 Subject: [PATCH] add: enable SMTP for grafana --- helm.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/helm.tf b/helm.tf index 2d7d18d..8ae22d6 100644 --- a/helm.tf +++ b/helm.tf @@ -43,6 +43,12 @@ resource "helm_release" "this" { org_role = "Viewer" hide_version = true } + "smtp" = { + enabled = true + host = "smtp.lawndale.:25" + from = "noreply@grafana.thomasklein.me" + from_name = "Grafana" + } } }),