Skip to content

Instantly share code, notes, and snippets.

@quinndiggity
Forked from shirou/ssh_keyscan.yml
Created October 31, 2019 20:45
Show Gist options
  • Save quinndiggity/f4834bf3f74a1f891ce6a59ffa47e7e8 to your computer and use it in GitHub Desktop.
Save quinndiggity/f4834bf3f74a1f891ce6a59ffa47e7e8 to your computer and use it in GitHub Desktop.
run ssh-keyscan to add keys to known_hosts. This is a playbook for ansible
---
- hosts: all
gather_facts: no
sudo: no
tasks:
- name: run ssh-keyscan to add keys to known_hosts
local_action: shell ssh-keyscan {{ ansible_ssh_host }} >> ~/.ssh/known_hosts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment