From 448d1d177203d0d3c1fa3700f87466d502099fbe Mon Sep 17 00:00:00 2001 From: Tamas Kiss Date: Sat, 8 Nov 2025 17:21:41 +0100 Subject: [PATCH] dep: upgrade grafana to 10.1.4 --- helm.tf | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/helm.tf b/helm.tf index 0c3fbca..8a0577f 100644 --- a/helm.tf +++ b/helm.tf @@ -4,9 +4,14 @@ resource "helm_release" "this" { repository = "https://grafana.github.io/helm-charts" chart = "grafana" - version = "7.0.8" + version = "10.1.4" values = [ + jsonencode({ + initChownData = { + enabled = false + } + }), jsonencode({ ingress = { enabled = true @@ -61,10 +66,10 @@ resource "helm_release" "this" { // below, the `?` is necessary to fix a bad assumtion on grafana's side GF_AUTH_GENERIC_OAUTH_API_URL = "${local.cognito_userinfo_url}?" GF_AUTH_GENERIC_OAUTH_SCOPES = "email openid profile" - // https://github.com/grafana/grafana/issues/70203#issuecomment-1603895013 - // https://github.com/advisories/GHSA-mpv3-g8m3-3fjc - // https://grafana.com/docs/grafana/latest/setup-grafana/configure-security/configure-authentication/#enable-email-lookup - GF_AUTH_OAUTH_ALLOW_INSECURE_EMAIL_LOOKUP = "true" + // https://github.com/grafana/grafana/issues/70203#issuecomment-1603895013 + // https://github.com/advisories/GHSA-mpv3-g8m3-3fjc + // https://grafana.com/docs/grafana/latest/setup-grafana/configure-security/configure-authentication/#enable-email-lookup + GF_AUTH_OAUTH_ALLOW_INSECURE_EMAIL_LOOKUP = "true" } }) ]