From 709a71ce722ead9de88c9c7794ee2fcd51a4fa7b Mon Sep 17 00:00:00 2001 From: Paul Fouquet Date: Wed, 8 Nov 2023 16:12:48 +1300 Subject: [PATCH] fix: linting error --- infra/eks/cluster.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/eks/cluster.ts b/infra/eks/cluster.ts index 838f9cc07..04238189e 100644 --- a/infra/eks/cluster.ts +++ b/infra/eks/cluster.ts @@ -1,5 +1,5 @@ import { KubectlV28Layer } from '@aws-cdk/lambda-layer-kubectl-v28'; -import { Aws, CfnOutput, Duration, RemovalPolicy, Stack, StackProps } from 'aws-cdk-lib'; +import { Aws, CfnOutput, Stack, StackProps } from 'aws-cdk-lib'; import { InstanceType, IVpc, SubnetType, Vpc } from 'aws-cdk-lib/aws-ec2'; import { Cluster, ClusterLoggingTypes, IpFamily, KubernetesVersion, NodegroupAmiType } from 'aws-cdk-lib/aws-eks'; import { @@ -11,7 +11,7 @@ import { Role, ServicePrincipal, } from 'aws-cdk-lib/aws-iam'; -import { BlockPublicAccess, Bucket, IBucket } from 'aws-cdk-lib/aws-s3'; +import { Bucket, IBucket } from 'aws-cdk-lib/aws-s3'; import { Construct } from 'constructs'; import { CfnOutputKeys } from '../constants.js';