Replace ansible_ssh_* by ansible_*
Ansible 2.0 has deprecated the “ssh” from ansible_ssh_user, ansible_ssh_host, and ansible_ssh_port to become ansible_user, ansible_host, and ansible_port. If you are using a version of Ansible prior to 2.0, you should continue using the older style variables (ansible_ssh_*). These shorter variables are ignored, without warning, in older versions of Ansible. I am not sure about the broader impact of this change. But I have seen on the requirements the version required is ansible>=2.4.0. http://docs.ansible.com/ansible/latest/intro_inventory.html
This commit is contained in:
parent
c0b0d06688
commit
a591657f36
1 changed files with 3 additions and 3 deletions
|
@ -3,13 +3,13 @@
|
||||||
has_bastion: "{{ 'bastion' in groups['all'] }}"
|
has_bastion: "{{ 'bastion' in groups['all'] }}"
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
bastion_ip: "{{ hostvars['bastion']['ansible_ssh_host'] }}"
|
bastion_ip: "{{ hostvars['bastion']['ansible_host'] }}"
|
||||||
when: has_bastion
|
when: has_bastion
|
||||||
|
|
||||||
# As we are actually running on localhost, the ansible_ssh_user is your local user when you try to use it directly
|
# As we are actually running on localhost, the ansible_ssh_user is your local user when you try to use it directly
|
||||||
# To figure out the real ssh user, we delegate this task to the bastion and store the ansible_ssh_user in real_user
|
# To figure out the real ssh user, we delegate this task to the bastion and store the ansible_user in real_user
|
||||||
- set_fact:
|
- set_fact:
|
||||||
real_user: "{{ ansible_ssh_user }}"
|
real_user: "{{ ansible_user }}"
|
||||||
delegate_to: bastion
|
delegate_to: bastion
|
||||||
when: has_bastion
|
when: has_bastion
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue