Forked from arbabnazar/gist:6b9909cfba52ac066512ba5d1c1a1080
Created
November 28, 2023 04:34
-
-
Save crazyguitar/d86c83645088cc829752d288a5763f39 to your computer and use it in GitHub Desktop.
Example for Ansible git-module and ssh agent forwarding
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# files/env: | |
Defaults env_keep += "SSH_AUTH_SOCK" | |
# tasks/main.yml | |
- name: ensure sudo keeps SSH_AUTH_SOCK in environment | |
copy: src=env | |
dest=/etc/sudoers.d/env | |
mode=0440 | |
owner=root | |
group=root | |
- name: clone repo from github | |
git: repo=ssh://[email protected]/example/example-repo.git | |
dest=/tmp/example-repo | |
# ~/.ssh/config | |
Host my-remote-ansible-host | |
ForwardAgent yes | |
# Make sure your key is added to ssh-agent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment