SSH to host from ansible inventory
Project description
ansible-ssh
ansible-ssh is a command-line utility that enables SSH connection to a host, utilizing connection variables retrieved from an Ansible inventory file.
It provides user-friendly bash command completion (including completing hosts from Ansible inventory file).
It supports connection details (such as host, port, user, key, and password) as well as advanced SSH options like ProxyJump/ProxyCommand for bastion host configurations.
Features
Simply run ansible-ssh <host> (if ansible.cfg exists) or ansible-ssh -i inventory <host>
- Automated Connection Parameters: Extracts connection details from an Ansible inventory.
- ansible.cfg Integration: Automatically detects and uses inventory file from ansible.cfg when present.
- Advanced SSH Options: Supports ProxyJump, ProxyCommand, and other SSH options via
ansible_ssh_common_argsandansible_ssh_extra_args. - Fallback Mechanism: Uses standard SSH configuration (e.g.,
~/.ssh/config) for any unspecified settings. - Smart Bash Completion: Auto-completes inventory files from
ansible.cfgand host names from your inventory. - Multiple Inventory Formats: Works with both YAML and INI inventory formats.
Requirements
- Python3
- Ansible: Required for running
ansible-inventory. - sshpass: (Optional) Required for password-based SSH connections.
- bash-completion: This is pretty much 50% of the functionality.
- jq: Required for parsing JSON output in the bash completion script.
Installation
shell
Clone the repository, link/copy somewhere into $PATH, and install bash completion script.
# Probably don't need to install anything, but for the reference...
sudo apt-get update
sudo apt-get install git python3 ansible-core sshpass jq bash-completion -y
git clone https://github.com/marekruzicka/ansible-ssh.git
cd ansible-ssh
chmod +x ansible-ssh/ansible-ssh.py
# Link/copy somewhere within $PATH
ln -s $PWD/ansible-ssh.py ~/.local/bin/ansible-ssh
# Generate bash_completion script
ansible-ssh -C bash | sudo tee /etc/bash_completion.d/ansible-ssh
source /etc/bash_completion.d/ansible-ssh
pip
Create or activate virtual env, install it using pip, and install bash completion script.
# Create, activate python virtual environment
virtualenv myvenv
source myvenv/bin/activate
# Install package using pip (yes, pypi package has the name reversed. ansible-ssh is taken :-( )
pip install ssh-ansible
# Generate bash_completion script
ansible-ssh -C bash | sudo tee /etc/bash_completion.d/ansible-ssh
source /etc/bash_completion.d/ansible-ssh
Usage
$ ansible-ssh --help
usage: ansible-ssh [-h] [-C {bash}] [-i INVENTORY] [host] [--print-only] [--debug]
Connect to a host using connection variables from an Ansible inventory.
positional arguments:
host Host to connect to
options:
-h, --help show this help message and exit
-C {bash}, --complete {bash}
Print bash completion script and exit
-i INVENTORY, --inventory INVENTORY
Path to the Ansible inventory file (optional if ansible.cfg exists)
--print-only Print SSH command instead of executing it
--debug Increase verbosity (can be used up to 3 times)
EXAMPLES:
Connect to a host (using ansible.cfg):
ansible-ssh myhost
Connect to a host with specific inventory:
ansible-ssh -i inventory myhost
Connect to a host with ssh verbosity:
ansible-ssh -i inventory myhost --debug --debug
Print SSH command without executing:
ansible-ssh myhost --print-only
Generate and install bash completion script:
ansible-ssh -C bash | sudo tee /etc/bash_completion.d/ansible-ssh
ansible.cfg Integration
ansible-ssh automatically detects and uses inventory configuration from ansible.cfg files, following Ansible's standard configuration hierarchy:
$ANSIBLE_CONFIGenvironment variable./ansible.cfg(current directory)~/.ansible.cfg(user home directory)/etc/ansible/ansible.cfg(system-wide)
Example Configuration
# ansible.cfg
[defaults]
inventory = ./hosts.ini
With this configuration, you can simply run:
# No need to specify -i inventory
ansible-ssh myhost
Smart Bash Completion
The bash completion is ansible.cfg-aware:
- When you type
ansible-ssh -i <TAB>, it suggests the inventory file from ansible.cfg first - When no
-iis specified, it uses the inventory from ansible.cfg for host completion
# Tab completion suggests ./hosts.ini from ansible.cfg
ansible-ssh -i <TAB>
# Tab completion shows hosts from the configured inventory
ansible-ssh <TAB>
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ssh_ansible-1.0.0.tar.gz.
File metadata
- Download URL: ssh_ansible-1.0.0.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cbc2a5fdaa3b52c796ec6ce3037f75f1bcaad320970be3cb76fcc59873b0d33
|
|
| MD5 |
b1a48236d7efb2f43bfcc8c5656982d1
|
|
| BLAKE2b-256 |
5e8822ec1493172f727bf7c3fc7b1e21f7e4a4ad4818c5662b466ef4fab8587a
|
File details
Details for the file ssh_ansible-1.0.0-py3-none-any.whl.
File metadata
- Download URL: ssh_ansible-1.0.0-py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5b8c7b62266da6acf19fad814358dba7dd8e6b02038732568f2d9a09191518a
|
|
| MD5 |
715b728adb209756fd7a4aaeb8331b09
|
|
| BLAKE2b-256 |
b9c37f5fa8c7369ffdf02d36b94330daa621345baeb448d0b531f9e7afdbfb00
|