How can use ansible with the below ssh.cfg
Host test
Hostname 10.35.74.241
User oyarimtepe@syslnx#host.foo.com@machine1.host.foo.com
I am trying to connect machine1. The above settings let me connect with
ssh test
10.35.74.241 is working like a jump host.
I created ansible.cfg as
[defaults]
inventory = hosts
host_key_checking = False
log_path = /path/to//ansible-playbooks/test/out.log
[ssh_connection]
ssh_args = -F /path/to//ansible-playbooks/test/ssh.cfg
The below command didn’t worked
ansible-playbook -i hosts test/playbook.yml --limit test
Any idea?