Files
ansible/playbooks/common-machine-config/inventory.yml
2026-01-09 16:21:24 +01:00

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: