Web: add link to CloudShell on EICE/EC2 Discover flow (#33062)

* Web: add link to CloudShell on EICE/EC2 Discover flow

* use official name: AWS CloudShell
This commit is contained in:
Marco André Dinis 2023-10-06 16:20:50 +01:00 committed by GitHub
parent b32ee8a678
commit 134974c761
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 4 deletions

View file

@ -331,7 +331,7 @@ const CreateAccessRole = ({
href="https://console.aws.amazon.com/cloudshell/home"
target="_blank"
>
Amazon CloudShell
AWS CloudShell
</Link>{' '}
and copy/paste the following command:
</Text>

View file

@ -15,7 +15,7 @@
*/
import React, { useState, useEffect } from 'react';
import { Box, Text } from 'design';
import { Box, Link, Text } from 'design';
import Table from 'design/DataTable';
import { Danger } from 'design/Alert';
import { FetchStatus } from 'design/DataTable/types';
@ -175,8 +175,15 @@ export const Ec2InstanceList = ({
<Text bold>Configure your AWS IAM permissions</Text>
<Text typography="subtitle1" mb={3}>
We were unable to list your EC2 instances. Run the command
below on your AWS CloudShell to configure your IAM
permissions. Then press the refresh button above.
below on your{' '}
<Link
href="https://console.aws.amazon.com/cloudshell/home"
target="_blank"
>
AWS CloudShell
</Link>{' '}
to configure your IAM permissions. Then press the refresh
button above.
</Text>
</>
}