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.

16 lines
604 B

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