Compare commits

...

2 Commits

Author SHA1 Message Date
448d1d1772 dep: upgrade grafana to 10.1.4
All checks were successful
continuous-integration/drone/push Build is passing
2025-11-08 17:21:41 +01:00
4c057f44ba dep: bump version to grafana v10.1.5
Some checks failed
continuous-integration/drone/push Build is failing
2023-11-28 11:53:16 +01:00

11
helm.tf
View File

@@ -4,9 +4,14 @@ resource "helm_release" "this" {
repository = "https://grafana.github.io/helm-charts"
chart = "grafana"
version = "6.52.2"
version = "10.1.4"
values = [
jsonencode({
initChownData = {
enabled = false
}
}),
jsonencode({
ingress = {
enabled = true
@@ -61,6 +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"
}
})
]