Skip to content

Commit ace7590

Browse files
committed
Move Cognito client IDs to AWS SSM
1 parent 82a36bb commit ace7590

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

backend/src/iac/backend-stack.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,7 @@ export class BackendStack extends cdk.Stack {
9898
});
9999

100100
// Cognito User Pool
101-
const userPool = cognito.UserPool.fromUserPoolId(
102-
this,
103-
`${appName}UserPool`,
104-
userPoolId,
105-
);
101+
const userPool = cognito.UserPool.fromUserPoolId(this, `${appName}UserPool`, userPoolId);
106102

107103
// Cognito domain
108104
const userPoolDomain = cognito.UserPoolDomain.fromDomainName(

0 commit comments

Comments
 (0)