ovh_ssh_exec
Run shell commands on any remote server via SSH, using environment variables for default credentials or override them per execution.
Instructions
Execute a command on a remote server via SSH. Uses env defaults (SSH_HOST, SSH_USER, SSH_PASSWORD/SSH_PRIVATE_KEY_FILE) or per-call overrides.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | Shell command to execute on the remote server | |
| host | No | SSH host (default: SSH_HOST env) | |
| port | No | SSH port (default: SSH_PORT env or 22) | |
| username | No | SSH username (default: SSH_USER env) | |
| password | No | SSH password (default: SSH_PASSWORD env) | |
| privateKeyFile | No | Path to SSH private key file | |
| timeout | No | Exec timeout in ms |