Skip to content

Commit

Permalink
feat: proper secret.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
japsu committed Dec 30, 2023
1 parent f95a5c5 commit cae2e6f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions kubernetes/secret.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ const secret = {
},
data: {
// fill these in, DO NOT COMMIT THE RESULT
KOMPASSI_OIDC_CLIENT_ID: b64(""),
KOMPASSI_OIDC_CLIENT_SECRET: b64(""),
NEXTAUTH_SECRET: b64(""),
DATABASE_URL: b64(""),
OIDC_CLIENT_SECRET: b64(""),
OIDC_CLIENT_ID: b64(""),
// generate using openssl rand -hex 32
SECRET_PASSWORD: b64(""),
},
};

Expand Down

0 comments on commit cae2e6f

Please sign in to comment.