STFP
Connect & Ingest data from / into an SFTP connection
The following credentials keys are accepted:
host
(required) -> The hostname / ip of the machineuser
(required) -> The username to access the machineport
(optional. Default is22
)password
(optional) -> The password to access the machineprivate_key
(optional) -> This is the path to your SSH private key.
Here is an example of setting a connection named
MY_SFTP
. We must provide the type=sftp
property:$ sling conns set MY_SFTP type=sftp host=<host> user=<user> password=<password> port=<port> private_key=<private_key>
# Or use url
$ sling conns set MY_SFTP url=sftp://myuser:[email protected]:22 private_key=<private_key>
export MY_SFTP='{type=sftp, url="sftp://myuser:[email protected]:22", private_key=<private_key>'
Last modified 5mo ago