The ansible files for the pains-perdus infra.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
g33kex ed0a699d81 fixed node exporter 2 years ago
books added all book 2 years ago
group_vars fixed node exporter 2 years ago
host_vars fixed node exporter 2 years ago
roles fixed node exporter 2 years ago
utils add script to generate vpn keys 3 years ago
.gitignore add keys 3 years ago
.gitmodules Added submodule for telegram bridge 2 years ago
LICENSE Initial commit 4 years ago
README.md started big cleanup 2 years ago
TODO.md finished moving group_vars where they belong 2 years ago
ansible.cfg started big cleanup 2 years ago
hosts fixed node exporter 2 years ago
run_playbook centralize the declaration of the intranet ip plan 3 years ago
vault-client.sh started big cleanup 2 years ago

README.md

ansible

The ansible files for the pains-perdus infra.

Deploy a playbook

ansible-playbook playbook.yml

Add --check to do a dry run

Edit the vault

ansible-vault edit group_vars/all/vault

with the edditor defined in the env varible $EDITOR and the password of the vault in the file .vault_password (Carefull not to commit it!!!)

SSH key whith passphrase

To avoid entering the passphrase of the ssh key for each host, we have to use an ssh-agent. The ssh-agent with xonsh does not really works, so in my case I have to use ansible and the agent inside a sh process:

sh
eval `ssh-agent -s`
ssh-add
ansible all -m ping # or whatever you want to do with ansible
exit

Vault managment

To use multiple vaults with multiple password, we use vault id. The mapping vault-id@password-file is done in ansible.cfg under [defaults] in vault_identity_list: vault_identity_list = main_vault@.main_vault_password , user_vault@.user_vault_password

To create a new vault with an id and password registered in ansible.cfg: ansible-vault create --encrypt-vault-id user_vault group_vars/all/user_vault

User managment

The user managment role allows to manage user.

Especially, it generate the described users on each hosts.

The password are stored in the variables in there hash form. The script hash_passwd.py can give you the hash of a password.

Passwords

keyring set ansible-painsperdus vault-default the_vault_password keyring set ansible-painsperdus become your_password