File tree Expand file tree Collapse file tree
cloudformation/scenarios/minute/cdk/lib Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,6 +81,14 @@ export class MinuteStack extends cdk.Stack {
8181 exportName : `${ this . stackName } -MinuteUrl` ,
8282 } ) ;
8383
84+ // Convenience: same URL with credentials embedded so you can paste it
85+ // straight into a browser address bar instead of copy-pasting the
86+ // username and password from the BasicAuth* outputs.
87+ new cdk . CfnOutput ( this , 'MinuteLoginUrl' , {
88+ description : 'Minute AI URL with basic auth credentials embedded (paste into browser)' ,
89+ value : `https://admin:${ cdn . basicAuthPassword } @${ cdn . domainName } ` ,
90+ } ) ;
91+
8492new cdk . CfnOutput ( this , 'CloudWatchLogsUrl' , {
8593 description : 'CloudWatch Logs URL' ,
8694 value : `https://${ this . region } .console.aws.amazon.com/cloudwatch/home?region=${ this . region } #logsV2:log-groups/log-group/${ encodeURIComponent ( '/ndx-minute' ) } ` ,
You can’t perform that action at this time.
0 commit comments