From c1680ea3f5f5b6d3881a9c0df61fb25f8119360b Mon Sep 17 00:00:00 2001 From: julialawrence <98329494+julialawrence@users.noreply.github.com> Date: Thu, 14 Nov 2024 13:05:53 +0000 Subject: [PATCH] Adding SFTP connection string (#466) --- source/documentation/tools/ingestion/index.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/source/documentation/tools/ingestion/index.md b/source/documentation/tools/ingestion/index.md index 930df901..6c7be372 100644 --- a/source/documentation/tools/ingestion/index.md +++ b/source/documentation/tools/ingestion/index.md @@ -48,4 +48,17 @@ For a given S3 bucket `` include the following statement } ``` -The `ingestion-account-ID` should be `471112983409` when connections are being made by the `transfer` lambda function in `analytical-platform-ingestion-production` and `730335344807` when connections are being made from `analytical-platform-ingestion-development`. \ No newline at end of file +The `ingestion-account-ID` should be `471112983409` when connections are being made by the `transfer` lambda function in `analytical-platform-ingestion-production` and `730335344807` when connections are being made from `analytical-platform-ingestion-development`. + +Once you receive confirmation from us that you have been onboarded and we have provided you with a username, you will be able to connect to our transfer service using the following commands: + +Production: + +```bash +sftp -P 2222 ${USERNAME}@sftp.ingestion.analytical-platform.service.justice.gov.uk +``` +Development: + +```bash +sftp -P 2222 ${USERNAME}@sftp.development.ingestion.analytical-platform.service.justice.gov.uk +```