eks-for-prod
Version:
EKS Cluster + EFS Filesystem + Aurora Serverless Cluster
16 lines • 574 B
TypeScript
import { Construct } from '@aws-cdk/core';
import { ICluster, ServiceAccount } from '@aws-cdk/aws-eks';
export interface EksServiceAccountProps {
cluster: ICluster;
serviceAccountName: string;
jsonPolicy: any;
/**
* Optional. Default is <strong>kube-system</strong>
*/
serviceAccountNamespace?: string;
}
export declare class ServiceAccountWithPolicy extends Construct {
serviceAccount: ServiceAccount;
constructor(scope: Construct, id: string, props: EksServiceAccountProps);
}
//# sourceMappingURL=service-account-with-policy.d.ts.map