known_hosts

    [Ansible] 자동으로 known_hosts에 등록하기

    [Version 정보] Ansible 2.9.15 vagrant 2.2.14 CentOS vm='generic/centos8' Ubuntu vm='ubuntu/trusty64' Known_hosts란? 이미 알고 있어, 확인하지 않아도 되는 믿을 수 있는 호스트. known-hosts를 등록해주는 명령어 Files Auto_known_hosts.yml --- - hosts: Ubuntu connection: local serial: 1 gather_facts: no tasks: - name: get known_hosts fingerprint for ubuntu nodes command: /usr/bin/ssh-keyscan -t ecdsa {{ ansible_host }} register: keyscan..