main.yml 401 B

1234567891011121314151617
  1. ---
  2. - name: Generate in-memory inventory
  3. include: openstack.yml
  4. - name: Checkpoint in-memory data into a static inventory
  5. include: checkpoint.yml
  6. - name: Generate SSH config for accessing hosts via bastion
  7. include: sshconfig.yml
  8. when: use_bastion|bool
  9. - name: Configure SSH tunneling to access UI
  10. include: sshtun.yml
  11. become: true
  12. when:
  13. - use_bastion|bool
  14. - ui_ssh_tunnel|bool