Ansible Module - Setup
ansible facts 란
ansible facts 는 remote host 에 대한 정보를 의미하며 배포판 종류, 버전, IP Address, file system 정보등을 포함.
ansible 은 playbook 실행시 자동으로 fact 를 수집하고 저장한다.
playbook을 작성하지 않고 간단하게 fact 만 출력하려면 builtin 모듈인 setup 을 사용한다.
ansible -m setup localhost
ansible -m setup localhost | grep distribution
inventory 파일을 사용
ansible -i inventory -m setup web1 | grep distribution
playbook
- hosts: db1
gather_facts: true
tasks:
Author And Source
이 문제에 관하여(Ansible Module - Setup), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@codingdaddy/Ansible-Module-Setup저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)