enable custom auth metadata in config

Signed-off-by: Jamie Klassen <jamie.klassen@broadcom.com>
This commit is contained in:
Jamie Klassen
2024-01-12 12:40:40 -05:00
parent 762809def5
commit 7f6ff255f1
5 changed files with 185 additions and 50 deletions
+7 -4
View File
@@ -46,13 +46,16 @@ export interface Config {
/** @visibility secret */
serviceAccountToken?: string;
/** @visibility frontend */
authProvider:
authProvider?:
| 'aks'
| 'aws'
| 'google'
| 'serviceAccount'
| 'azure'
| 'google'
| 'googleServiceAccount'
| 'oidc'
| 'googleServiceAccount';
| 'serviceAccount';
/** @visibility secret */
authMetadata?: object;
/** @visibility frontend */
oidcTokenProvider?: string;
/** @visibility frontend */