Skip to content

Commit

Permalink
Revert "test for review comment"
Browse files Browse the repository at this point in the history
This reverts commit 5d64092.
  • Loading branch information
go-to-k committed Nov 21, 2024
1 parent 5d64092 commit 7ad82e2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { App, CfnOutput, RemovalPolicy, Stack } from 'aws-cdk-lib';
import { UserPool } from 'aws-cdk-lib/aws-cognito';
import { LOG_API_RESPONSE_DATA_PROPERTY_TRUE_DEFAULT } from 'aws-cdk-lib/cx-api';

/*
* Stack verification steps:
* * Verify that the CloudFrontDistribution stack output is of the format 'xxxxxxxxxxxxxx.cloudfront.net'
*/

const app = new App();
const app = new App({ postCliContext: { [LOG_API_RESPONSE_DATA_PROPERTY_TRUE_DEFAULT]: false } });
const stack = new Stack(app, 'integ-user-pool-domain-cfdist');

const userpool = new UserPool(stack, 'UserPool', {
Expand Down

0 comments on commit 7ad82e2

Please sign in to comment.