Skip to content

Instantly share code, notes, and snippets.

View jvanderaa's full-sized avatar

Josh VanDeraa jvanderaa

View GitHub Profile
@jvanderaa
jvanderaa / ansible-github.yml
Created March 17, 2018 19:38 — forked from devynspencer/ansible-github.yml
Example playbook for cloning a private git repository with Ansible.
---
hosts: all
tasks:
- name: add github ssh key
copy: >
src=files/id_rsa.github
dest=/root/.ssh/id_rsa.github
owner=root
group=root