Skip to content

Instantly share code, notes, and snippets.

@diegoperini
Forked from maxim/task.yml
Created November 4, 2020 15:47
Show Gist options
  • Save diegoperini/259151cc338a923827ce983bbc488278 to your computer and use it in GitHub Desktop.
Save diegoperini/259151cc338a923827ce983bbc488278 to your computer and use it in GitHub Desktop.
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