ansible-rundeck/examples/playbooks/show_ansible_facts.yaml
Marc Ahlgrim 36dddd6f03 added examples
Signed-off-by: Marc Ahlgrim <marc@onemarcfifty.com>
2022-09-01 08:41:26 +02:00

34 lines
759 B
YAML

---
# ##############################################
# Show ansible facts
# ##############################################
# ##########################
- name: show facts
hosts: all:!Windows
gather_facts: true
become: true
# ##########################
tasks:
- name: Print all available facts
ansible.builtin.debug:
# var: ansible_facts
msg: "{{ ansible_facts | dict2items | selectattr('value.macaddress', 'defined') | map(attribute='value') | list }}"
# ##########################
- name: show facts
hosts: Windows
gather_facts: true
become: false
# ##########################
tasks:
- name: Print all available facts
ansible.builtin.debug:
var: ansible_facts.interfaces