Using SSH Agent Forwarding with Ansible
I've been using SSH agent forwarding with Ansible for the last few projects I've been working on and I thought I'd just share my setup here.
The neat thing with SSH agent forwarding is not having to store your SSH keys on your servers when pulling down your Git repo during deployment.
For example, I can deploy new code to my servers through Ansible from my local machine using my local SSH keys. The servers …