Hi,

My ssh.config

Host bastion
    User ansible
    HostName bastion-server
    ProxyCommand none
    IdentityFile ~/.ssh/id_rsa
    BatchMode yes
    PasswordAuthentication no

Host *
    ServerAliveInterval 60
    TCPKeepAlive yes
    ProxyCommand ssh -q -A root@bastion nc %h %p
    ControlMaster auto
    ControlPath ~/.ssh/mux-%r@%h:%p
    ControlPersist 8h
    User root
    StrictHostKeyChecking no


My ansible.cfg
[default]
hash_behaviour=merge
transport=ssh

[ssh_connection]
ssh_args = -o ControlPersist=15m -F ssh.config -q
scp_if_ssh = True
control_path = ~/.ssh/mux-%%r@%%h:%%p

When I run ssh bastion -F ssh.config I can connect with success.

When I run ansible -i ./  meta_Pool_wearezoneeu -m setup -vvvv it gives 
following error:

ERROR! ERROR! ./ssh.config:1: Expected key=value host variable assignment, 
got: bastion

No idea why this happens. Anyone experienced a similar thing or can point 
me into the right direction?

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/f9987fb8-2c39-4614-b9e3-25a456e3c6b1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to