14 lines
690 B
YAML
14 lines
690 B
YAML
# User which will be created on the LXC containers to replace root
|
|
target_user: 'mbuz'
|
|
|
|
# User which Ansible will use to connect to the LXC containers initially
|
|
ansible_user: 'root'
|
|
|
|
# List of public keys to be added to the target_user's authorized_keys file
|
|
my_public_keys:
|
|
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINSGj0dxaA38QSBVY3DZiPb+qmIuTFxGo0mt4sbmYDa3 mbuz@macbook-pro"
|
|
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOpvRkew+XpOAt7I/mizQbE/OJP1SO6NVl2/A1ZGzdU3 mbuz@windows-desktop"
|
|
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIGWMJbHDCB8XCxPGth1229A3W/sPpvJHO9xBvegv4Sx mbuz@macbook-air"
|
|
|
|
# Key used for Ansible to connect to LXC containers
|
|
ansible_ssh_private_key_file: '~/.ssh/ansible' |