From 8e7e460341db65a3707c8be9960751f76da47381 Mon Sep 17 00:00:00 2001 From: Mahdi Dibaiee Date: Thu, 25 Jan 2024 16:14:56 +0000 Subject: [PATCH] docs: add sshKey to source-sftp docs --- site/docs/reference/Connectors/capture-connectors/sftp.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/site/docs/reference/Connectors/capture-connectors/sftp.md b/site/docs/reference/Connectors/capture-connectors/sftp.md index 98353e64f0..18b0c587b5 100644 --- a/site/docs/reference/Connectors/capture-connectors/sftp.md +++ b/site/docs/reference/Connectors/capture-connectors/sftp.md @@ -50,7 +50,8 @@ You configure connectors either in the Flow web app, or by directly editing the |---|---|---|---|---| | **`/address`** | Address | Host and port of the SFTP server. Example: `myserver.com:22` | string | Required | | **`/username`** | Username | Username for authentication. | string | Required | -| **`/password`** | Password | Password for authentication. | string | Required | +| `/password` | Password | Password for authentication. Only one of Password or SSHKey must be provided. | string | | +| `/sshKey` | SSH Key | SSH Key for authentication. Only one of Password or SSHKey must be provided. | string | | | **`/directory`** | Directory | Directory to capture files from. All files in this directory and any subdirectories will be included. | string | Required | | `/matchFiles` | Match Files Regex | Filter applied to all file names in the directory. If provided, only files whose path (relative to the directory) matches this regex will be captured. For example, you can use `.*\.json` to only capture json files. | string | | | `/advanced` | | Options for advanced users. You should not typically need to modify these. | object | | @@ -181,4 +182,4 @@ but you may need to specify for unusual datasets. These properties are: * Disable Quoting (`""`) * Auto -The sample specification [above](#sample) includes these fields. \ No newline at end of file +The sample specification [above](#sample) includes these fields.