ansible gather_facts setup


1、setupリモートマシンからfacts gatherを取得するsubsetパラメータのデフォルトはallで、情報収集の範囲を定義します.パラメータはall,min,hardware,network,virtual,ohai,and factor
#ansible all -m setup -a 'gather_subset=!all,!any,facter'
- name: Collect only facts returned by facter
  setup:
    gather_subset:
      - '!all'
      - '!any'
      - facter

2、デフォルトではsetupモジュールを使用してリモートホスト情報を取得する
- hosts: web
  gather_facts: True
  gather_subset: network
- hosts: web
  gather_facts: True
  gather_subset: network,virtual

まとめ:普段使っている両者に大きな違いはありません(個人的な結論)
参考記事:https://medium.com/@abhijeet.kamble619/10-things-you-should-start-using-in-your-ansible-playbook-808daff76b65 https://docs.ansible.com/ansible/devel/modules/gather_facts_module.html