modify ssh config

Hi all,
I already searched the web to update ssh configuration, but was unsuccessful. Is there an official way to inject a customized ssh configuration? If not I would raise an issue.

The problem: I have a couple of servers behind a jumphost with a special port, I want to manage with AWX.

As a workaround the following script does the job after installation:

http://docs.ansible.com/ansible/latest/intro_inventory.html#list-of-behavioral-inventory-parameters

http://docs.ansible.com/ansible/latest/intro_configuration.html#openssh-specific-settings

You can leverage that work to your dynamic inventory instead.

You could generate the dynamic inventory that injects that for you and have:

[server1]
server1.hidden.lan ansible_ssh_common_args=“-o ProxyCommand="ssh -A -W -p 4321 %h:%p -o User=jump jumphost.someip.com"”

-Cesar