What if some cool engineer will join your devops-backend team?
You need to add his public RSA key to the server!
There's two options: if your key was on Digital Ocean before (means, that Droplet root user already has your key) or if you're totally newbie.
You may use this command:
`ansible-playbook -i inventories/staging init.yml --ask-vault-pass -t update_pubkey`
It will ask you vault password. Please, check your projects' wiki to get all passwords.
Settings -> Security (https://cloud.digitalocean.com/settings/security)
Add new ssh key button!
cat ~/.ssh/id_rsa.pub | ssh parse@<your-server-ip> -p9033 'cat >> .ssh/authorized_keys'
Please use setup_user_password
(aka parse user password) from wiki of your project.
cat ~/.ssh/id_rsa.pub | ssh root@<your-server-ip> -p9033 'cat >> .ssh/authorized_keys'
Please use setup_root_password
(aka root password) from wiki of your project.