kayobe/ansible/group_vars/all/ssh
Will Miller 2d5fd703a0 Reconcile all 'Ansible control host' references
Ensure all references to the Ansible control host are worded as such, to
ensure consistency and avoid potential confusion with the OpenStack
controllers.

Change-Id: Id92e537ccbfdd55287b8eae296f649640c70ce17
2018-07-11 17:19:18 +01:00

20 lines
627 B
Plaintext

---
###############################################################################
# SSH configuration.
# Type of SSH key.
ssh_key_type: "rsa"
# Name of SSH key.
ssh_key_name: "{{ 'id_' ~ ssh_key_type }}"
# Path to SSH private key on the Ansible control host.
ssh_private_key_path: "{{ lookup('env', 'HOME') ~ '/.ssh/' ~ ssh_key_name }}"
# Path to SSH public key on the Ansible control host.
ssh_public_key_path: "{{ ssh_private_key_path ~ '.pub' }}"
###############################################################################
# Dummy variable to allow Ansible to accept this file.
workaround_ansible_issue_8743: yes