This library provides an integration with SSH and SFTP.
dagster_ssh.
SSHResource
(remote_host, remote_port, username=None, password=None, key_file=None, key_string=None, timeout=10, keepalive_interval=30, compress=True, no_host_key_check=True, allow_host_key_change=False, logger=None)[source]¶Resource for ssh remote execution using Paramiko. ref: https://github.com/paramiko/paramiko
dagster_ssh.
ssh_resource
ResourceDefinition[source]¶remote host to connect to
port of remote host to connect (Default is paramiko SSH_PORT)
Default Value: 22
username to connect to the remote_host
password of the username to connect to the remote_host
key file to use to connect to the remote_host.
key string to use to connect to remote_host
timeout for the attempt to connect to the remote_host.
Default Value: 10
send a keepalive packet to remote host every keepalive_interval seconds
Default Value: 30
Default Value: True
Default Value: True
Default Value: False