diff --git a/webview/src/setup/components/remotes/AmazonS3.tsx b/webview/src/setup/components/remotes/AmazonS3.tsx index 4d59df6fbe..ec74749409 100644 --- a/webview/src/setup/components/remotes/AmazonS3.tsx +++ b/webview/src/setup/components/remotes/AmazonS3.tsx @@ -14,7 +14,11 @@ export const AmazonS3 = () => ( . This reads the default AWS credentials file (if available) or env vars.

- + The AWS user needs the following permissions: s3:ListBucket, s3:GetObject, s3:PutObject, s3:DeleteObject. diff --git a/webview/src/setup/components/remotes/AzureBlobStorage.tsx b/webview/src/setup/components/remotes/AzureBlobStorage.tsx index e237a059f8..4b0ff94f05 100644 --- a/webview/src/setup/components/remotes/AzureBlobStorage.tsx +++ b/webview/src/setup/components/remotes/AzureBlobStorage.tsx @@ -13,6 +13,7 @@ export const AzureBlobStorage = () => ( for details on how to authenticate.

diff --git a/webview/src/setup/components/remotes/GoogleCloudStorage.tsx b/webview/src/setup/components/remotes/GoogleCloudStorage.tsx index f8fa16c1ab..3e4b53d77c 100644 --- a/webview/src/setup/components/remotes/GoogleCloudStorage.tsx +++ b/webview/src/setup/components/remotes/GoogleCloudStorage.tsx @@ -15,7 +15,11 @@ export const GoogleCloudStorage: React.FC = () => ( . This reads the default GCP key file.

- +

{' '} Make sure to run{' '} diff --git a/webview/src/setup/components/remotes/ShowExtension.tsx b/webview/src/setup/components/remotes/ShowExtension.tsx index 97cd43c735..543d1dcb4f 100644 --- a/webview/src/setup/components/remotes/ShowExtension.tsx +++ b/webview/src/setup/components/remotes/ShowExtension.tsx @@ -3,10 +3,11 @@ import styles from './styles.module.scss' import { Icon } from '../../../shared/components/Icon' import { Extensions } from '../../../shared/components/icons' -export const ShowExtension: React.FC<{ id: string; name: string }> = ({ - id, - name -}) => { +export const ShowExtension: React.FC<{ + capabilities: string + id: string + name: string +}> = ({ capabilities, id, name }) => { const idQuery = `"@id:${id}"` return ( @@ -17,7 +18,7 @@ export const ShowExtension: React.FC<{ id: string; name: string }> = ({ height={16} className={styles.infoIcon} />{' '} - View the{' '} + The{' '} = ({ > {name} {' '} - extension. + extension can be used to {capabilities}.

) }