mistakenly changed secret marker

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2023-10-25 15:33:14 +02:00
parent abd7762585
commit 5aeb14f035
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-auth-backend-module-microsoft-provider': patch
---
Correctly mark the client secret in configuration as secret
+1 -1
View File
@@ -21,10 +21,10 @@ export interface Config {
microsoft?: {
[authEnv: string]: {
clientId: string;
tenantId: string;
/**
* @visibility secret
*/
tenantId: string;
clientSecret: string;
callbackUrl?: string;
};