Merge pull request #10646 from backstage/freben/more-secret

declare the oauth2proxy clientSecret a secret
This commit is contained in:
Fredrik Adelöw
2022-04-05 16:11:47 +02:00
committed by GitHub
2 changed files with 8 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-auth-backend': patch
---
Declare oauth2 `clientSecret` with visibility secret
+3
View File
@@ -90,6 +90,9 @@ export interface Config {
oauth2?: {
[authEnv: string]: {
clientId: string;
/**
* @visibility secret
*/
clientSecret: string;
authorizationUrl: string;
tokenUrl: string;