Skip to content

Commit

Permalink
feat(aws-eks): newer Python runtime for kubectl-provider
Browse files Browse the repository at this point in the history
  • Loading branch information
plumdog committed Sep 6, 2023
1 parent 0318676 commit 744eb51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-eks/lib/kubectl-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export class KubectlProvider extends NestedStack implements IKubectlProvider {

const handler = new lambda.Function(this, 'Handler', {
code: lambda.Code.fromAsset(path.join(__dirname, 'kubectl-handler')),
runtime: lambda.Runtime.PYTHON_3_7,
runtime: lambda.Runtime.PYTHON_3_11,
handler: 'index.handler',
timeout: Duration.minutes(15),
description: 'onEvent handler for EKS kubectl resource provider',
Expand Down

0 comments on commit 744eb51

Please sign in to comment.