Backend supports AKS auth provider

Signed-off-by: Jamie Klassen <jklassen@vmware.com>
This commit is contained in:
Jamie Klassen
2023-02-27 14:14:31 -05:00
parent cfe0f5d822
commit 05f1d74539
11 changed files with 104 additions and 0 deletions
+2
View File
@@ -226,6 +226,8 @@ export const kubernetesProxyPermission: BasicPermission;
// @public (undocumented)
export interface KubernetesRequestAuth {
// (undocumented)
aks?: string;
// (undocumented)
google?: string;
// (undocumented)
+1
View File
@@ -35,6 +35,7 @@ import { Entity } from '@backstage/catalog-model';
/** @public */
export interface KubernetesRequestAuth {
google?: string;
aks?: string;
oidc?: {
[key: string]: string;
};