File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @alliander-opensource/aws-jwt-sts" ,
3
- "version" : " 0.2.8 " ,
3
+ "version" : " 0.2.9 " ,
4
4
"author" : {
5
5
"name" : " Alliander NV"
6
6
},
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