34 lines
759 B
YAML
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
|