26 lines
748 B
YAML
26 lines
748 B
YAML
# This applies to all hosts
|
|
all:
|
|
children:
|
|
fik:
|
|
kiwi:
|
|
vars:
|
|
# Make ansible connect to the system it manages with the "ansible" system
|
|
# user
|
|
ansible_user: ansible
|
|
|
|
# This dict holds all the user accounts that are present on all of the
|
|
# linux virtual machines, and their associated SSH keys.
|
|
shell_users:
|
|
- username: urosg
|
|
comment: "Uroš Golja"
|
|
public_ssh_key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPfcMY//DluCevXoNqiYnHmfk7Uj+rcENiCJV1s1h+VD urosg@fik"
|
|
- username: matejag
|
|
comment: "Mateja Golja"
|
|
- username: lukag
|
|
comment: "Luka Golja"
|
|
|
|
# This dict holds all the user accounts that have been revoked.
|
|
revoked_shell_users: []
|
|
|
|
# vim: set cc=80 nowrap:
|