sshconfig.yml 355 B

12345678910111213
  1. ---
  2. - name: set ssh proxy command prefix for accessing nodes via bastion
  3. set_fact:
  4. ssh_proxy_command: >-
  5. ssh {{ ssh_options }}
  6. -i {{ private_ssh_key }}
  7. {{ ssh_user }}@{{ hostvars['bastion'].ansible_host }}
  8. - name: regenerate ssh config
  9. template:
  10. src: openstack_ssh_config.j2
  11. dest: "{{ ssh_config_path }}"
  12. mode: 0644