feature: add aws iam auth translator for kubernetes

This commit is contained in:
Jonah Back
2021-01-23 16:00:18 -08:00
parent 7abe2c2c33
commit 6811112282
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';
}[];
};
}