Skip to content

Instantly share code, notes, and snippets.

View Skifa87's full-sized avatar

Tatyana North Skifa87

View GitHub Profile
@Skifa87
Skifa87 / ansible-github.yml
Created June 27, 2022 16:51 — 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