File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -435,20 +435,20 @@ export class AwsJwtSts extends Construct {
435
435
new cdk . CfnOutput ( this , 'tokenEndpoint' , {
436
436
value : 'https://' + tokenDomainName + '/token' ,
437
437
description : 'Url of the token endpoint' ,
438
- exportName : ' tokenEndpoint'
438
+ exportName : ` ${ cdk . Stack . of ( this ) } - tokenEndpoint`
439
439
} )
440
440
} else {
441
441
new cdk . CfnOutput ( this , 'tokenEndpoint' , {
442
442
value : api . url + 'token' ,
443
443
description : 'Url of the token endpoint' ,
444
- exportName : ' tokenEndpoint'
444
+ exportName : ` ${ cdk . Stack . of ( this ) } - tokenEndpoint`
445
445
} )
446
446
}
447
447
448
448
new cdk . CfnOutput ( this , 'issuer' , {
449
449
value : issuer ,
450
450
description : 'Url of the issuer' ,
451
- exportName : ' issuer'
451
+ exportName : ` ${ cdk . Stack . of ( this ) } - issuer`
452
452
} )
453
453
454
454
/** ---------------------- WAF ----------------------- */
You can’t perform that action at this time.
0 commit comments