Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinZZ committed Jan 15, 2025
1 parent 9cdd32b commit 27cca08
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class EksClusterStack extends Stack {

const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false
}
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
},
});

const stack = new EksClusterStack(app, 'integ-eks-stack');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ class EksClusterAlbControllerStack extends Stack {

const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false
}
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
},
});
const stack = new EksClusterAlbControllerStack(app, 'aws-cdk-eks-cluster-alb-controller');
new integ.IntegTest(app, 'aws-cdk-cluster-alb-controller-integ', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ class EksClusterStack extends Stack {

const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false
}
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
},
});
const stack = new EksClusterStack(app, 'aws-cdk-eks-import-cluster-test');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,8 @@ const supportedRegions = [

const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false
}
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
},
});

// since the EKS optimized AMI is hard-coded here based on the region,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ const supportedRegions = [

const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false
}
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
},
});

// since the EKS optimized AMI is hard-coded here based on the region,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class EksClusterInferenceStack extends Stack {

const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false
}
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
},
});
const stack = new EksClusterInferenceStack(app, 'aws-cdk-eks-cluster-inference-nodegroup');
new integ.IntegTest(app, 'aws-cdk-eks-cluster-interence-nodegroup-integ', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ class EksClusterInferenceStack extends Stack {

const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false
}
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
},
});
const stack = new EksClusterInferenceStack(app, 'aws-cdk-eks-cluster-inference');
new integ.IntegTest(app, 'aws-cdk-eks-cluster-interence-integ', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';

const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false
}
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
},
});
const stack = new Stack(app, 'aws-eks-oidc-provider-test');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';

const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false
}
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
},
});
const stack = new Stack(app, 'aws-eks-service-account-sdk-calls-test');

Expand Down

0 comments on commit 27cca08

Please sign in to comment.