Skip to content

Commit

Permalink
test for review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
go-to-k committed Nov 21, 2024
1 parent e08b04c commit 5d64092
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
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({ postCliContext: { [LOG_API_RESPONSE_DATA_PROPERTY_TRUE_DEFAULT]: false } });
const app = new App();
const stack = new Stack(app, 'integ-user-pool-domain-cfdist');

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

0 comments on commit 5d64092

Please sign in to comment.