Compare commits

...

2 Commits

Author SHA1 Message Date
c748e71a91 dep: update grafana
Some checks failed
continuous-integration/drone/push Build is failing
2023-03-14 13:56:51 +01:00
41a687a5ab add: enable SMTP for grafana 2023-03-12 17:10:11 +01:00

View File

@@ -4,7 +4,7 @@ resource "helm_release" "this" {
repository = "https://grafana.github.io/helm-charts" repository = "https://grafana.github.io/helm-charts"
chart = "grafana" chart = "grafana"
version = "6.50.7" version = "6.52.2"
values = [ values = [
jsonencode({ jsonencode({
@@ -43,6 +43,12 @@ resource "helm_release" "this" {
org_role = "Viewer" org_role = "Viewer"
hide_version = true hide_version = true
} }
"smtp" = {
enabled = true
host = "smtp.lawndale.:25"
from = "noreply@grafana.thomasklein.me"
from_name = "Grafana"
}
} }
}), }),