We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd3960f commit bc720beCopy full SHA for bc720be
1 file changed
aws/cli-installer/src/main.mjs
@@ -176,7 +176,10 @@ export async function executePipeline(cfg) {
176
`${theme.label(pad('Prometheus:'))} ${cfg.prometheusUrl}`,
177
`${theme.label(pad('Direct Query Service Datasource:'))} ${cfg.dqsDataSourceArn || 'n/a'}`,
178
`${theme.label(pad('Direct Query Service Role:'))} ${cfg.dqsRoleArn || 'n/a'}`,
179
- ...(cfg.demoInstanceId ? [`${theme.label(pad('Demo EC2 Instance:'))} ${cfg.demoInstanceId}`] : []),
+ ...(cfg.demoInstanceId ? [
180
+ `${theme.label(pad('Demo EC2 Instance:'))} ${cfg.demoInstanceId}`,
181
+ `${pad('')} ${theme.muted(`└─ Connect: aws ssm start-session --target ${cfg.demoInstanceId} --region ${cfg.region}`)}`,
182
+ ] : []),
183
'',
184
`${theme.success.bold('→ Open your dashboards:')}`,
185
` ${cfg.dashboardsUrl}`,
0 commit comments