From 33b9e4ab0c7bc23d7daaee5845dbb042bde8c300 Mon Sep 17 00:00:00 2001 From: Robert Keyser Date: Tue, 24 Jan 2023 10:51:54 -0600 Subject: [PATCH] fix: values.yaml reference to fides logging env vars this commit sets the correct name of the Fides log pii env var (as changed in https://github.com/ethyca/fides/pull/2031) and changes the default logging level from debug --> info --- fides/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fides/values.yaml b/fides/values.yaml index 2cf0b75..9acead6 100644 --- a/fides/values.yaml +++ b/fides/values.yaml @@ -17,10 +17,10 @@ fides: # fides.configure.additionalEnvVar adds arbitrary environment variables to the configuration, in addition to those set # by the Helm chart. See https://ethyca.github.io/fides/installation/configuration/ for all possible values. additionalEnvVars: - - name: FIDES__LOG_PII + - name: FIDES__LOGGING__LOG_PII value: "false" - name: FIDES__LOGGING__LEVEL # Accepted values include: DEBUG, INFO, WARNING, ERROR, and CRITICAL. - value: "DEBUG" + value: "INFO" - name: FIDES__EXECUTION__SUBJECT_IDENTITY_VERIFICATION_REQUIRED value: "false" - name: FIDES__EXECUTION__REQUIRE_MANUAL_REQUEST_APPROVAL