Skip to content

Commit

Permalink
Change the version of cdk to avoid aws/aws-cdk#25714
Browse files Browse the repository at this point in the history
  • Loading branch information
szipan committed Jan 6, 2024
1 parent eccc933 commit c2a3f4f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

const { awscdk, gitlab, javascript, typescript } = require('projen');
const version = '1.0.0';
const cdkVersion = '2.81.0';
const cdkVersion = '2.83.1';
const minNodeVersion = '18.17.0';

const cdkAlphaModules = [
Expand Down
9 changes: 0 additions & 9 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,22 +52,13 @@ stackSuppressions([
new CloudFrontFrontendAppStack(app, 'cloudfront-s3-frontend-app-stack-global', {
synthesizer: synthesizer(),
}),
new CloudFrontFrontendAppStack(app, 'cloudfront-s3-frontend-app-stack-global-oidc', {
useExistingOIDCProvider: true,
synthesizer: synthesizer(),
}),
], commonSuppresionRulesForCloudFrontS3PatternInGloabl);

stackSuppressions([
new CloudFrontFrontendAppStack(app, 'cloudfront-s3-frontend-app-stack-global-customdomain', {
useCustomDomainName: true,
synthesizer: synthesizer(),
}),
new CloudFrontFrontendAppStack(app, 'cloudfront-s3-frontend-app-stack-global-customdomain-oidc', {
useCustomDomainName: true,
useExistingOIDCProvider: true,
synthesizer: synthesizer(),
}),
], [
...commonSuppresionRulesForCloudFrontS3PatternInGloabl,
{ id: 'AwsSolutions-L1', reason: 'Caused by CDK DnsValidatedCertificate resource when request ACM certificate' },
Expand Down

0 comments on commit c2a3f4f

Please sign in to comment.