Skip to content

Instantly share code, notes, and snippets.

@tomcbe
Forked from maxim/task.yml
Created April 13, 2018 17:09
Adding github to known_hosts with ansible
- name: ensure github.com is a known host
lineinfile:
dest: /root/.ssh/known_hosts
create: yes
state: present
line: "{{ lookup('pipe', 'ssh-keyscan -t rsa github.com') }}"
regexp: "^github\\.com"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment