--- id: apache-airflow-providers-ssh version: "6.0.1" license: Apache-2.0 license_treatment: permissive maintenance: active --- # apache-airflow-providers-ssh — Provider package apache-airflow-providers-ssh for Apache Airflow License: permissive · Maintenance: active · Downloads: 16.4M/mo ## What it is and what it does This is an Apache Airflow provider package that adds SSH capabilities to Airflow workflows. It supplies operators and hooks for executing commands on remote servers over secure shell connections, integrating SSH transport into Airflow's task execution model. The package depends on apache-airflow (>=2.11.0), asyncssh (>=2.12.0), paramiko (>=4.0.0), and apache-airflow-providers-common-compat (>=1.12.0) to handle SSH protocol details and async operations. Typically used in data pipelines and system administration workflows where Airflow needs to trigger scripts, deploy code, or manage infrastructure on remote machines. It abstracts SSH connection management through Airflow's connection registry, so tasks reference a named SSH connection rather than embedding credentials directly in DAG code. Use it for: - Execute deployment or maintenance scripts on remote servers as part of an Airflow pipeline. - Trigger data collection or ETL jobs running on remote machines from a centralized Airflow scheduler. - Monitor or manage infrastructure by running diagnostic commands on multiple remote hosts via Airflow tasks. - Coordinate multi-server workflows where tasks on different machines need to run in sequence or parallel. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides SSH integration for Apache Airflow, enabling tasks to execute commands on remote servers over secure shell connections. Yes. This is a production-stable provider (Development Status 5) with active maintenance, no known vulnerabilities, and low install friction. Install it if you run Apache Airflow and need to execute commands on remote servers via SSH. Verify your Airflow version meets >=2.11.0 and that you have Python 3.10+ before installing. ## Install pip install apache-airflow-providers-ssh uv add apache-airflow-providers-ssh poetry add apache-airflow-providers-ssh ## Installing apache-airflow-providers-ssh Before you install: Low friction installation as a pure Python wheel. Actively maintained with a release 6 days old. Requires Apache Airflow >=2.11.0 and modern Python (3.10+); depends on asyncssh and paramiko for SSH transport. License in practice: Licensed under Apache-2.0 (permissive), allowing commercial and private use with minimal restrictions. Quickstart: pip install apache-airflow-providers-ssh from airflow.providers.ssh.operators.ssh import SSHOperator task = SSHOperator( task_id='ssh_task', ssh_conn_id='my_ssh_connection', command='ls -la' ) Requires an existing Apache Airflow >=2.11.0 installation and a configured SSH connection in Airflow's connection store. Verify before relying: - Whether asyncssh >=2.12.0 or paramiko >=4.0.0 is preferred for different SSH scenarios or if both are used simultaneously. - Support for key-based vs. password authentication and any special setup required for each. ## Package facts - License: Apache-2.0 (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 16.4M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags airflow ssh provider, remote command execution airflow, ssh integration airflow, airflow ssh operator, secure shell airflow tasks, airflow remote server connection, airflow-provider, ssh-integration, workflow-orchestration [View on SkillFed](https://skillfed.io/packages/apache-airflow-providers-ssh) · [View on PyPI](https://pypi.org/project/apache-airflow-providers-ssh/)