kayobe/ansible/group_vars/all/globals
Mark Goddard efc7424e26 Add support for adding a user account for SSH access
This requires us to use a bootstrap user account to add the Kayobe user
and group with an authorised SSH key. All subsequent SSH access uses this
new user.
2017-02-16 10:44:33 +00:00

19 lines
647 B
Plaintext

---
# Kayobe global configuration.
###############################################################################
# Miscellaneous configuration.
# Path to Kayobe configuration directory.
kayobe_config_path: "{{ lookup('env', 'KAYOBE_CONFIG_PATH') | default('/etc/kayobe') }}"
# Path in which to cache downloaded images.
image_cache_path: "{{ ansible_user_dir ~ '/kayobe-image-cache' }}"
# Path on which to checkout source code repositories.
source_checkout_path: "{{ ansible_user_dir ~ '/kayobe-source' }}"
# User with which to access seed and controller nodes. This user will be
# created if it does not exist.
kayobe_ansible_user: "stack"