38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
---
|
|
|
|
- delegate_to: localhost
|
|
block:
|
|
- name: ensure '{{ tobiko_ssh_config_path | dirname }}' exists
|
|
file:
|
|
path: '{{ tobiko_ssh_config_path | dirname }}'
|
|
state: directory
|
|
|
|
- name: get ssh_config content'
|
|
shell:
|
|
cmd: vagrant ssh-config
|
|
chdir: '{{ devstack_plugin_tobiko_src_dir }}'
|
|
register: get_ssh_config
|
|
changed_when: false
|
|
|
|
- debug: var=get_ssh_config
|
|
|
|
- name: write ssh_config to file '{{ tobiko_ssh_config_path }}'
|
|
copy:
|
|
content: |
|
|
{{ get_ssh_config.stdout }}
|
|
dest: '{{ tobiko_ssh_config_path }}'
|
|
|
|
- name: write ssh_config file path to {{ tobiko_config_path }}
|
|
ini_file:
|
|
path: '{{ tobiko_config_path }}'
|
|
section: ssh
|
|
option: config_files
|
|
value: '{{ tobiko_ssh_config_path }}'
|
|
|
|
- name: write SSH proxy jump host to {{ tobiko_config_path }}
|
|
ini_file:
|
|
path: '{{ tobiko_config_path }}'
|
|
section: ssh
|
|
option: proxy_jump
|
|
value: devstack-primary
|