|
2 years ago | |
---|---|---|
group_vars | 2 years ago | |
host_vars | 2 years ago | |
roles | 2 years ago | |
secrets | 2 years ago | |
.gitignore | 2 years ago | |
ansible.cfg | 2 years ago | |
inventory.ini | 2 years ago | |
readme.md | 2 years ago | |
ssh-keys.sh | 2 years ago | |
ssh-keys.yml | 2 years ago |
Dicts in parent group merges with dicts in child groups.
Warning! Playbook will delete all public keys in root's .ssh/authorized_keys
file and setup own super key, only after this public keys in group_vars and host_vars will be added into assigned users .ssh/authorized_keys
files.
Security issue! You need to generate your own super key! Run ssh-keygen -f superkey
and replace keys in secret/
directory.
Infrastructure:
--[ hetzner ]--\
|- hetzner-balancers
\- hetzner-nodes
All servers will be available to the administrator and assistant, servers must have own internal key for files copying. Configuring parent hetzner
group:
access_list:
admin: { keypath: "../keys/admin.pub", username: "root" }
techguy: { keypath: "../keys/techguy.pub", username: "root" }
interserver: { keypath: "../keys/interserver.pub", username: "root" }
secret_list:
interserver: { keypath: "../keys/interserver.pem", username: "root" }
You want to make additional access to all nodes for developer guy. Configuring child hetzner-nodes
group:
access_list:
developer: { keypath: "../keys/developer.pub", username: "dev" }
No need to make additional config for hetzner-balancers
because access list will be inherited, only admins accessible.
Copyright by Vladimir Smagin, 2018 http://blindage.org 21h@blindage.org