14 lines
263 B
YAML
14 lines
263 B
YAML
---
|
|
- name: Facts
|
|
hosts: linuxservers
|
|
|
|
tasks:
|
|
- name: Debug Facts
|
|
ansible.builtin.debug:
|
|
msg: "{{ ansible_facts }}"
|
|
|
|
|
|
- name: Debug Facts Hostname - Unsafe Text
|
|
ansible.builtin.debug:
|
|
msg: "{{ ansible_facts['nodename'] }}"
|