Merge pull request #20796 from backstage/freben/secret

mistakenly changed secret marker
This commit is contained in:
Fredrik Adelöw
2023-10-25 15:55:32 +02:00
committed by GitHub
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;
};