You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
617 B

  1. ---
  2. - set_fact:
  3. has_bastion: "{{ 'bastion' in groups['all'] }}"
  4. - set_fact:
  5. bastion_ip: "{{ hostvars['bastion']['ansible_ssh_host'] }}"
  6. when: has_bastion
  7. # As we are actually running on localhost, the ansible_ssh_user is your local user when you try to use it directly
  8. # To figure out the real ssh user, we delegate this task to the bastion and store the ansible_ssh_user in real_user
  9. - set_fact:
  10. real_user: "{{ ansible_ssh_user }}"
  11. delegate_to: bastion
  12. when: has_bastion
  13. - name: create ssh bastion conf
  14. become: false
  15. template: src=ssh-bastion.conf dest="{{ playbook_dir }}/ssh-bastion.conf"