Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabi-02 committed Jan 20, 2024
1 parent db5086e commit 3166d39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tenant/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_URL=http://localhost
FA_URL=http://localhost:9011
FA_API_KEY=33052c8a-c283-4e96-9d2a-eb1215c69f8f-not-for-prod
clientSecret=super-secret-secret-that-should-be-regenerated-for-production
CLIENT_SECRET=super-secret-secret-that-should-be-regenerated-for-production
2 changes: 1 addition & 1 deletion tenant/tenant-creation.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const appUrl = process.env.APP_URL || 'http://localhost';
const FA_URL = process.env.FA_URL || 'http://localhost:9011';
const FA_API_KEY = process.env.FA_API_KEY || '33052c8a-c283-4e96-9d2a-eb1215c69f8f-not-for-prod';
const client = new FusionAuthClient(FA_API_KEY, FA_URL);
const clientSecret = process.env.clientSecret || "super-secret-secret-that-should-be-regenerated-for-production";
const clientSecret = process.env.CLIENT_SECRET || "super-secret-secret-that-should-be-regenerated-for-production";

async function deleteTenant(tenantName) {
try {
Expand Down

0 comments on commit 3166d39

Please sign in to comment.