Merge pull request #4228 from backjo/feature/AwsIamAuthForKubernetes

feature: add aws iam auth translator for kubernetes
This commit is contained in:
Ben Lambert
2021-01-26 10:25:24 +01:00
committed by GitHub
10 changed files with 232 additions and 5 deletions
+2 -2
View File
@@ -35,11 +35,11 @@ export interface Config {
/**
* @visibility secret
*/
serviceAccountToken: string;
serviceAccountToken: string | undefined;
/**
* @visibility frontend
*/
authProvider: 'serviceAccount';
authProvider: 'aws' | 'google' | 'serviceAccount';
}[];
};
}