From 7bb2c1c2781839b77fa19801fffab48c230cfaa0 Mon Sep 17 00:00:00 2001 From: Grraahaam <72856427+Grraahaam@users.noreply.github.com> Date: Wed, 22 Feb 2023 10:25:08 +0100 Subject: [PATCH] fix(script): auto generate secrets at runtime --- helm-charts/infisical/examples/kind.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/helm-charts/infisical/examples/kind.sh b/helm-charts/infisical/examples/kind.sh index 5be42a2f2..3b7fbba28 100755 --- a/helm-charts/infisical/examples/kind.sh +++ b/helm-charts/infisical/examples/kind.sh @@ -60,11 +60,11 @@ mongodb: mailhog: enabled: true backendEnvironmentVariables: - ENCRYPTION_KEY: 6c1fe4e407b8911c104518103505b218 - JWT_AUTH_SECRET: 4be6ba5602e0fa0ac6ac05c3cd4d247f - JWT_REFRESH_SECRET: 5f2f3c8f0159068dc2bbb3a652a716ff - JWT_SERVICE_SECRET: f32f716d70a42c5703f4656015e76200 - JWT_SIGNUP_SECRET: 3679e04ca949f914c03332aaaeba805a + ENCRYPTION_KEY: $(openssl rand -hex 16) + JWT_AUTH_SECRET: $(openssl rand -hex 16) + JWT_REFRESH_SECRET: $(openssl rand -hex 16) + JWT_SERVICE_SECRET: $(openssl rand -hex 16) + JWT_SIGNUP_SECRET: $(openssl rand -hex 16) SITE_URL: https://$host SMTP_FROM_ADDRESS: dev@$host SMTP_FROM_NAME: Local Infisical